From 8c7040a76b02a7dd3909831f8522cd74babc8e41 Mon Sep 17 00:00:00 2001 From: "Kent C. Dodds" Date: Mon, 26 Aug 2024 13:09:43 -0600 Subject: [PATCH] add missing videos --- exercises/07.state-reducer/01.problem.reducer/README.mdx | 2 ++ exercises/07.state-reducer/01.solution.reducer/README.mdx | 2 ++ 2 files changed, 4 insertions(+) diff --git a/exercises/07.state-reducer/01.problem.reducer/README.mdx b/exercises/07.state-reducer/01.problem.reducer/README.mdx index dd89d455..f42e2817 100644 --- a/exercises/07.state-reducer/01.problem.reducer/README.mdx +++ b/exercises/07.state-reducer/01.problem.reducer/README.mdx @@ -1,5 +1,7 @@ # State Reducer + + 👨‍💼 In this exercise, we want to prevent the toggle from updating the toggle state after it's been clicked 4 times in a row before resetting. We could easily add that logic to our reducer, but instead we're going to apply a computer diff --git a/exercises/07.state-reducer/01.solution.reducer/README.mdx b/exercises/07.state-reducer/01.solution.reducer/README.mdx index 9b2c38db..b3a0bbc7 100644 --- a/exercises/07.state-reducer/01.solution.reducer/README.mdx +++ b/exercises/07.state-reducer/01.solution.reducer/README.mdx @@ -1,5 +1,7 @@ # State Reducer + + 👨‍💼 This is a powerful example of inversion of control that allows users to overwrite our entire reducer. But it could be exhausting to users to have to duplicate most of our reducer just to change a few things. So let's address that