Challenge
In this challenge, we will create a react component that adds an item to an HTML list and displays it when a user presses the add button.
Your tasks are as follows:
- Initialize state variable
itemswith an empty array. - Bind the given function
handleAddItemin the constructor. - Loop over the variable items and display each in a list item.
Hints:
- Add it as you do in a JS object.
- Bind using
this.methodname.bind(this)code - Refer to the JSX chapter.
Tout était clair ?
Merci pour vos commentaires !
Section 1. Chapitre 10
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Suggested prompts:
Posez-moi des questions sur ce sujet
Résumer ce chapitre
Afficher des exemples du monde réel
Awesome!
Completion rate improved to 3.13
Challenge
Glissez pour afficher le menu
In this challenge, we will create a react component that adds an item to an HTML list and displays it when a user presses the add button.
Your tasks are as follows:
- Initialize state variable
itemswith an empty array. - Bind the given function
handleAddItemin the constructor. - Loop over the variable items and display each in a list item.
Hints:
- Add it as you do in a JS object.
- Bind using
this.methodname.bind(this)code - Refer to the JSX chapter.
Tout était clair ?
Merci pour vos commentaires !
Section 1. Chapitre 10