Replies: 1 comment
-
ofc, right after posting the question I found a way to do what I want. I can pass a function that takes |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Maybe there is already a solution for that but hear me out.
I already have some pretty basic forms created with
@rvf/remix
ValidatedForm
component. Now I need to add scoped form inside one of such forms and it seems to do that I have to useconst form = useForm(...)
and<form {...form.getFormProps()}>
pair instead ofValidatedForm
component. It would be great if we could get a hold of the internalFormApi
ofValidatedForm
without through a callback likeonFormInitialized
oronMounted
or preferably using refs. Wdyt?Beta Was this translation helpful? Give feedback.
All reactions