Course Content
Introduction to React
Introduction to React
Creating a TODO Application
In this chapter, we will try creating a TODO app using the knowledge of React we have acquired so far.
We will start by creating the main component called Todo
:
The Todo
component will have the following HTML elements:
<ul>
for displaying the TODO list items;<form>
for adding new items;<input>
where the user can write the new item to be added;<button>
for adding that new item.
In code it will look like this:
In the browser, the output should be something like this:
If you click the Add Item button, it will just reload the page, and nothing will change.
Let's try making it functional. We will create a new inline function called handleSubmit
and use preventDefault
method to prevent the page from reloading. Then we will retrieve the value of the input
element and add it to the list items props.items
as a <li>
element, and finally clear the input field.
This will update the props.items
array. We will also add a console.log
statement for debugging. The final code should look like this:
After running this code, you will notice that it doesn’t appear in the list when you add a new item.
However, if you check the console, you'll notice that the array is being updated every time you add an element:
This is because the component does not re-render when a new item is added since data stored in the props
object is not tracked by Reac. We will fix that in the next section when we learn about the new data storing method: states.
Thanks for your feedback!