You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ In this project you will build an application that allows for github user and fo
32
32
#### Build your DOM
33
33
> *Creating the DOM for your application base on your template and data*
34
34
*[ ] 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/<Yourgithubname> and https://api.github.com/users/<Yourgithubname>/followers
36
36
*[ ] Using these three pieces of information, build the DOM necessary to display all application information.
37
37
*[ ] 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.***
38
38
*[ ] 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
46
46
- An object containing all user information
47
47
- The array of all followers
48
48
*[ ] 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.
49
50
50
51
#### 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*
52
53
*[ ] Make our user object and follower list state empty by default.
53
54
*[ ] Keep our searched user state your github username by default.
54
55
*[ ] Use componentDidMount to load initial user data for your github name into state.
0 commit comments