File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
- Use state and events to make components dynamic
6
6
- Implement controlled components
7
7
8
- ## Overview
8
+ ## Introduction
9
9
10
10
To build on what you've learned over the course of this section, we'll be
11
11
building out a simple task list app to practice working with state and events,
@@ -19,7 +19,7 @@ down to the components that need it as props.
19
19
20
20
Run ` npm install ` and ` npm start ` , then check out the starter code in the
21
21
browser. You'll see a console message with the ` TASK ` and ` CATEGORY ` data you'll
22
- need down from ` App ` .
22
+ need to pass down from ` App ` .
23
23
24
24
### TaskList
25
25
@@ -29,7 +29,7 @@ sure to use a `key` prop!
29
29
30
30
### Task
31
31
32
- Update the ` Task ` component so that it shows the text and category for its task .
32
+ Update the ` Task ` component so that it shows the task's text and category.
33
33
34
34
_ When the delete button is clicked_ , the task should be removed from the list.
35
35
You can’t perform that action at this time.
0 commit comments