Build a signup form that takes a name and an email. Typing shows up in the inputs as you type, and submitting displays the greeting "Hello, {name}". Complete SignupForm.
Build a React signup form that takes a name and an email. Typing shows up in the inputs as you type, and submitting displays the greeting "Hello, {name}" using the entered values. It all happens inside a single component with no server request.
A form is a screen where what the user types shows up on screen and then feeds the next action, such as submitting. This problem deals with how an input reflects and updates its own value, and how that value is read and used on submit. In React, how you handle an input's value depends on how you connect what shows on screen with what the code holds. What makes the behavior trustworthy is driving the type-and-submit flow for real and checking the screen shows the value you expect.