forked from Shin-sibainu/react-tutorial-with-todoapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flow.txt
57 lines (30 loc) · 910 Bytes
/
flow.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
1. node -v
2. npx create-react-app
3. package.json npm start explain
4. public/html
5. src/index.js and App explain
6. App hotreloading and delete all
7. <TodoList /> add
8. plugin for react-redux~~~
9. below add input tag, but error occured
10. button added
11. useState explain(state mangement, rerender component tree)
12. initialTodo set.
13. props to TaskList.
14. how to get props
15. jsx explain(you can write js code)
16. <Todo /> created
17. map function and display inside.
18. child key error
19. change state inside value
20. input checkbox added to todo component
21. button handleAddTodo
22. handleAddTodo function and useRef use
23. added a new todo with spread syntax
24. uuid install
(
25. localStorage set using useEffect
26. localStorage get using useEffect
)
27. toggle function added.
28. props toggletodo