react with custom hooks
As you can see from the code below, this control uses react hooks with a custom flavour. Pretty easy to understand.
useState allows you to configure value setting methods
This control exposes onChange which just update the state
And finally it also exposes value which you can use to show / render into the control what info has bene typed by a user.
What is the spread operator doing in there?
It just doing a mapping and renders something that looks like this
Comments