yucky-goldY
Refine3y ago
3 replies
yucky-gold

nested form submission

I have 2 forms that use the useForm hook,
const form_A = useForm({...});
const form_B = useForm({...});

When form_A is submitted, I would also like form_B to be submitted. How would one programatically trigger the submission of form_B when the submission of form_B occurs?
Was this page helpful?