From 714fad245e570ad9160c431d29d2560b8cb4d231 Mon Sep 17 00:00:00 2001 From: ph08n1x Date: Wed, 17 Feb 2021 13:07:26 +0100 Subject: [PATCH] fix: typo in exercise 6 Small typo in exercise 6 where "These works similar to" should be "These work similar to" --- src/exercise/06.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exercise/06.md b/src/exercise/06.md index 6eb44986..f6e4c6de 100644 --- a/src/exercise/06.md +++ b/src/exercise/06.md @@ -63,7 +63,7 @@ function MyTwoInputs() { ## Exercise In this exercise, we've created a `` component which can accept a prop -called `on` and another called `onChange`. These works similar to the `value` +called `on` and another called `onChange`. These work similar to the `value` and `onChange` props of ``. Your job is to make those props actually control the state of `on` and call the `onChange` with the suggested changes.