Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 40a5fa9

Browse files
Parth ShahParth Shah
authored andcommitted
fixed more typos
1 parent ce6820b commit 40a5fa9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

responses/01-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
In our [solution](https://githubtraining.github.io/react-solution/), our assignments page looks like the above. The overall webpage is a component that we call `App` and inside `App` there's are other components like buttons, titles, and even other custom components that we can create (like the Assginments List).
99

10-
Take a look at the following line in `App.jsx`.
10+
Take a look at the following line in `src/App.jsx`.
1111

1212
```javascript
1313
class App extends React.Component

responses/add-state-variable-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Currently, in `App`, we have three state variables:
88
- `assignments` - This stores the list of assignments. It is a state variable because the list changes every time a new assignment is added.
99
- `grades` - This should store the grade for each student. However, we have no way to store students, so let's fix that!
1010

11-
### :keyboard: Activity: Add a state variable to `App.jsx`
11+
### :keyboard: Activity: Add a state variable to `src/App.jsx`
1212

1313
1. On line 11, add a state variable named `students`
1414
2. Set `students` equal to an empty array

0 commit comments

Comments
 (0)