From 08e294ac5dc6785da58868c34f77163a84420c2a Mon Sep 17 00:00:00 2001 From: ThomSullivan Date: Sat, 11 Mar 2023 08:47:15 -0600 Subject: [PATCH 1/2] Fixed link at bottom of page --- 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..f329c64 100644 --- a/05_Day_Props/05_props.md +++ b/05_Day_Props/05_props.md @@ -1096,4 +1096,4 @@ We will cover propTypes in detail in other sections. 🎉 CONGRATULATIONS ! 🎉 -[<< Day 4](../04_Day_Component/04_components.md) | [Day 6 >>](../06_Day_Map_List_Keys/06_map_list_keys.md) +[<< Day 4](../04_Day_Components/04_components.md) | [Day 6 >>](../06_Day_Map_List_Keys/06_map_list_keys.md) From ae19195ede733f56efc0c41ee6aa191ba00973bf Mon Sep 17 00:00:00 2001 From: ThomSullivan Date: Sat, 18 Mar 2023 08:27:28 -0500 Subject: [PATCH 2/2] Typo fix --- 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 f329c64..77fe860 100644 --- a/05_Day_Props/05_props.md +++ b/05_Day_Props/05_props.md @@ -192,7 +192,7 @@ Now, when you do console.log(props) you should get the following object, that me } ``` -As you can see in the above code, we passed only single props to Header component, the welcome props. A component can have one or many props. Props could be different data types. It could be a string, number, boolean, array, object or a function. We will cover different kind of props in the next sections. +As you can see in the above code, we passed only single props to Header component, the welcome props. A component can have one or many props. Props could be different data types. It could be a string, number, boolean, array, object or a function. We will cover different kinds of props in the next sections. ### Different data type props