From 0b1cada3f39c1ffdd729d26316368e7db0a0d92a Mon Sep 17 00:00:00 2001 From: asabeneh Date: Sun, 1 Nov 2020 19:19:36 +0200 Subject: [PATCH] minor changes --- 04_Day_Components/04_components.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/04_Day_Components/04_components.md b/04_Day_Components/04_components.md index c9d0529..0f9c268 100644 --- a/04_Day_Components/04_components.md +++ b/04_Day_Components/04_components.md @@ -28,6 +28,7 @@ - [Injecting data to JSX in React Component](#injecting-data-to-jsx-in-react-component) - [Further on Functional components](#further-on-functional-components) - [Exercises: Components](#exercises-components) + - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) @@ -483,7 +484,9 @@ ReactDOM.render(, rootElement) # Exercises: Components -1. What is the difference between a regular function and an arrow function? +## Exercises: Level 1 + +1. What is the difference between a regular function and an arrow function? 2. What is a React Component? 3. How do you make a React functional component? 4. What is the difference between a pure JavaScript function and a functional component?