Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions 12-quiz-time.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ _Choices_:
2. `Ingredients.js`

```
PUT YOUR ANSWER HERE
Ingredients.js
```


Expand All @@ -40,7 +40,7 @@ _Choices_:
4. `<p>My favorite ice cream is {this.flavor}!</p>`

```
PUT YOUR ANSWER HERE
<p>My favorite ice cream is {this.props.flavor}!</p>
```


Expand All @@ -65,7 +65,7 @@ _Choices_:
2. No

```
PUT YOUR ANSWER HERE
2. No
```


Expand All @@ -86,7 +86,7 @@ _Choices_:
2. No

```
PUT YOUR ANSWER HERE
1. Yes
```


Expand All @@ -112,7 +112,7 @@ _Choices_:
4. The `ReactDOM.render` method generates a new element with an ID of `root`, which it populates with the JSX returned from the `Kangaroos` component. React updates the virtual DOM to have this new element, which the browser sees to dynamically change the page with the new element on it.

```
PUT YOUR ANSWER HERE
1.The ReactDOM.render method generates a virtual DOM node containing whatever content the Kangaroos component returns, and appends that to the element with an ID of root. Then, React compares the virtual DOM to the regular DOM and updates on the webpage only the elements that have changed.
```


Expand All @@ -127,7 +127,7 @@ _Choices_:
2. False

```
PUT YOUR ANSWER HERE
1. True
```


Expand All @@ -143,7 +143,7 @@ _Choices_:
4. All of the above

```
PUT YOUR ANSWER HERE
4. All of the above
```


Expand Down Expand Up @@ -181,7 +181,7 @@ _Choices_:
4. When passing the props into `Store`, the syntax is `this.groceryList.important` and `this.groceryList.spices`

```
PUT YOUR ANSWER HERE
4. When passing the props into `Store`, the syntax is `this.groceryList.important` and `this.groceryList.spices`
```


Expand All @@ -199,7 +199,7 @@ _Choices_:
4. `create-react-app index/jungle_maze.js`

```
PUT YOUR ANSWER HERE
3. `create-react-app jungle_maze`
```


Expand Down Expand Up @@ -235,7 +235,7 @@ _Choices_:
2. No

```
PUT YOUR ANSWER HERE
1. Yes
```


Expand All @@ -254,5 +254,5 @@ Choices:
4. In the component class' `render()` method; you only need it if you are changing any initial configurations for that class.

```
PUT YOUR ANSWER HERE
4. In the component class' `render()` method; you only need it if you are changing any initial configurations for that class.
```