What is HOOKs? Hooks are function that let you “Hook into” react state and life cycle features from function components. Hooks don’t work inside classes, they let you use react without classes. State Hook (useState): suppose we want to make simple form, to enter the user name and age. App.js […]