Skip to content

Commit 1d97546

Browse files
adds base code.
1 parent ce4b57a commit 1d97546

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In this project you will build an application that allows for github user and fo
3232
#### Build your DOM
3333
> *Creating the DOM for your application base on your template and data*
3434
* [ ] Take a look at the [included mockup](./card_mockup.png).
35-
* [ ] Take a look at the data returned when using endpoint: https://api.github.com/users/< Your github name > and https://api.github.com/users/< Your github name >/followers
35+
* [ ] Use your browser to take a look at the data returned when using the following endpoints: https://api.github.com/users/<Your github name> and https://api.github.com/users/<Your github name>/followers
3636
* [ ] Using these three pieces of information, build the DOM necessary to display all application information.
3737
* [ ] Make use of the User.js (for holding all user information), FollowerList.js (for map through a followers list) and Follower.js (for displaying an individual follower) components to efficiently distribute your code. ***All components should be class based for this assignment.***
3838
* [ ] Feel free to leave the search form within App.js.
@@ -46,9 +46,10 @@ In this project you will build an application that allows for github user and fo
4646
- An object containing all user information
4747
- The array of all followers
4848
* [ ] Using our two github endpoints as a base, add your github user name, as well as test data for the user object and followers array to insure it is connected correctly.
49+
* [ ] Connect make sure that the test data within state correct displays within your User, FollowerList and Follower components.
4950

5051
#### Load in the user and follower on mount
51-
> *We can now do our api call to get our initial data*
52+
> *We can now do our api calls to get our initial data*
5253
* [ ] Make our user object and follower list state empty by default.
5354
* [ ] Keep our searched user state your github username by default.
5455
* [ ] Use componentDidMount to load initial user data for your github name into state.

0 commit comments

Comments
 (0)