Skip to content

Commit ab087c5

Browse files
committed
fix urls
1 parent d6838ff commit ab087c5

File tree

24 files changed

+24
-24
lines changed

24 files changed

+24
-24
lines changed

exercises/01.use-state/01.problem.initial-state/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Initial State
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/render-an-initial-state" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/render-an-initial-state" />
44

55
👨‍💼 Hello! So here's where we're starting out:
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Initial State
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/render-an-initial-state/solution" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/render-an-initial-state/solution" />
44

55
👨‍💼 Great work! Now at least we're not just throwing an error. But let's handle
66
the state update next.

exercises/01.use-state/02.problem.update-state/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Update State
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/make-the-setstate-function-work" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/make-the-setstate-function-work" />
44

55
👨‍💼 Alright, right now when you click the button, nothing happens. Let's get it
66
to update the state.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Update State
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/make-the-setstate-function-work/solution" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/make-the-setstate-function-work/solution" />
44

55
👨‍💼 So we're updating the state value, but it's not actually updating the number
66
in the button? What gives?!

exercises/01.use-state/03.problem.re-render/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Re-render
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/component-doesn-t-re-render-when-state-updates" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/component-doesn-t-re-render-when-state-updates" />
44

55
👨‍💼 Ok, so we're initializing our state properly and we're updating the state
66
properly as well. The problem is we're not updating the UI when the state gets

exercises/01.use-state/03.solution.re-render/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Re-render
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/component-doesn-t-re-render-when-state-updates/solution" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/component-doesn-t-re-render-when-state-updates/solution" />
44

55
👨‍💼 Great work! Now we're not only updating the state, but we're also triggering
66
a re-render so the UI can be updated. Unfortunately that seems to not be working

exercises/01.use-state/04.problem.preserve-state/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Preserve State
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/state-is-reset-to-initialstate-on-each-render" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/state-is-reset-to-initialstate-on-each-render" />
44

55
👨‍💼 Alright, so there are actually two problems here. First, when the user clicks
66
on the button, we update the `state` variable inside the `useState` closure, but
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Preserve State
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/state-is-reset-to-initialstate-on-each-render/solution" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/state-is-reset-to-initialstate-on-each-render/solution" />
44

55
👨‍💼 Great work! Our UI is working properly! By preserving our state we're able to
66
make changes to it and render again whenever that value changes.

exercises/01.use-state/FINISHED.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# useState
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/dad-joke-and-break-usestate" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/dad-joke-and-break-usestate" />
44

55
👨‍💼 This is a great time for you to take a break and reflect on your learnings so
66
far. Take a moment and then when you're ready, we'll see you in the next

exercises/01.use-state/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# useState
22

3-
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/use-state/introduction-to-usestate" />
3+
<EpicVideo url="https://www.epicreact.dev/tutorials/build-react-hooks/introduction-to-usestate" />
44

55
The `useState` hook is one of the most common hooks and is a good place for us
66
to start because it triggers re-rendering of the component and we can observe

0 commit comments

Comments
 (0)