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

Commit ce6820b

Browse files
Parth ShahParth Shah
authored andcommitted
fix typos
1 parent 7e8dda7 commit ce6820b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

responses/01-components.md

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

33
**Components** are the **building blocks of React apps**. Think of components as different parts of the app. Each button is a component, each text is a component etc. From html, you might recognize some of the built in components like `<div />` and `<li />`, but in React, we can create our own components! How cool is that?
44

5-
### Components in `App.jsx`
5+
### Components in `src/App.jsx`
66
![Assignments Solution](https://user-images.githubusercontent.com/25253905/61293228-11f26580-a788-11e9-90ac-9612c2bddf6b.png)
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).

responses/05-congrats.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ Congratulations on finishing Introduction to React. You can go ahead and pull fr
55
Although this course certainly doesn't mean you are a React expert, we hope you have the tools to explore further content on your own. Here are some cool resources for further learning:
66

77
- [Create your own React App](https://facebook.github.io/create-react-app/docs/getting-started)
8-
- [Depolying a React App to GitHub Pages](https://codeburst.io/deploy-react-to-github-pages-to-create-an-amazing-website-42d8b09cd4d)
8+
- [Deploying a React App to GitHub Pages](https://codeburst.io/deploy-react-to-github-pages-to-create-an-amazing-website-42d8b09cd4d)

responses/bind-function-activity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Step 8: Binding a function
1+
### Step 8: Binding a method
22

33
Also, since we created a method that changes the a state variable, we have to bind it to our class, so that when we call it, we know what method to reference.
44

0 commit comments

Comments
 (0)