3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ so it's useful to understand.
110
110
111
111
> PLEASE NOTE: there was a subtle change in the order of cleanup functions
112
112
> getting called in React 17:
113
- > https://github.com/kentcdodds/react-hooks/issues/90
113
+ > < https://github.com/kentcdodds/react-hooks/issues/90 >
114
114
115
115
## 🦉 Feedback
116
116
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ also be determined based on the value of `squares` and we've provided a
51
51
📜 Read more about derived state in
52
52
[ Don't Sync State. Derive It!] ( https://kentcdodds.com/blog/dont-sync-state-derive-it )
53
53
54
- ### Alternate:
54
+ ### Alternate
55
55
56
56
If you'd prefer to practice refactoring a class that does this to a hook, then
57
57
you can open ` src/exercise/04-classes.js ` and open that on
@@ -82,7 +82,7 @@ quick extra credit).
82
82
83
83
[ Production deploy] ( https://react-hooks.netlify.app/isolated/final/04.extra-3.js )
84
84
85
- Open ` http://localhost:3000/isolated/final/04.extra-3.js ` and see that the extra
85
+ Open [ http://localhost:3000/isolated/final/04.extra-3.js ] ( http://localhost:3000/isolated/final/04.extra-3.js ) and see that the extra
86
86
version supports keeping a history of the game and allows you to go backward and
87
87
forward in time. See if you can implement that!
88
88
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ Additionally, we'll need to clean up after ourselves if this component is
59
59
unmounted. Otherwise we'll have event handlers dangling around on DOM nodes that
60
60
are no longer in the document.
61
61
62
- ### Alternate:
62
+ ### Alternate
63
63
64
64
If you'd prefer to practice refactoring a class that does this to a hook, then
65
65
you can open ` src/exercise/05-classes.js ` and open that on
0 commit comments