In React, how can you bring multiple forms but have only one submit button that will send all the data from those forms to the backend?
A) Use a single state object to store data from all forms, and update it as the user inputs data into each form.
B) Utilize the Context API to share data between multiple forms and have a single submit handler to send data to the backend.
C) Implement a parent component that renders all forms and manages their state and submission logic.
D) Combine all form data into a single JSON object upon submission and send it to the backend using an asynchronous HTTP request.