I have error line 9. useState is not define. Thanks you sir | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

I have error line 9. useState is not define. Thanks you sir

Error line 9. Use state is not define https://code.sololearn.com/WuT98SC0Hej0/?ref=app

26th Jul 2022, 3:31 PM
Malick Diagne
Malick Diagne - avatar
1 Réponse
+ 1
You never imported useState from react, so you need to type React.useState() Also useState hook is used inside component not outside as you type, so place this inside. Same is for methods you are using, like method to handle submit, inside this you access value of state, you can only do this inside component, or by sending this data to other component(parent to children and children to parent) or by using something like redux. https://code.sololearn.com/Wlp1h7aieT3Z/?ref=app
26th Jul 2022, 5:25 PM
PanicS
PanicS - avatar