From 7563e247b855c03847f2e6f0125114f2ba7f8aaa Mon Sep 17 00:00:00 2001 From: Jianting Feng <36693163+JiantingFeng@users.noreply.github.com> Date: Wed, 4 Jan 2023 15:12:38 +0800 Subject: [PATCH] Fix a typo --- 05_Day_Props/05_props.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05_Day_Props/05_props.md b/05_Day_Props/05_props.md index 255ba7b..360eaee 100644 --- a/05_Day_Props/05_props.md +++ b/05_Day_Props/05_props.md @@ -254,7 +254,7 @@ welcome: "Welcome to 30 Days Of React" } ``` -Since you are a JavaScript ninja by now, you know what do do with this object. +Since you are a JavaScript ninja by now, you know what to do with this object. As you can see from the above example, the value of the props are written statically. However, if we want to apply some logic it is hard to implement with statically written data, so it will be better to use a variable as props. Let's see the following example: