Skip to content

Commit 5b0777a

Browse files
authored
Update README.md
1 parent 2935ec4 commit 5b0777a

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Module Project: Comppnent Lifecycle Method - React Github User Card
1+
# Module Project: Component Lifecycle Methods - React Github User Card
22

33
This project allows you to practice the concepts and techniques learned in this module and apply them in a concrete project. This module explored lifecycle methods in class components. In your project you will demonstrate proficiency of these concepts by recreating the Github User Card project, but as a React application this time.
44

@@ -10,10 +10,6 @@ This project allows you to practice the concepts and techniques learned in this
1010

1111
Commit your code regularly and meaningfully. This helps both you and your team lead in case you ever need to return to old code for any number of reasons.
1212

13-
### Description
14-
15-
In this project you'll take this crypto currency tracker app and build two custom hooks that, when composed together, will allow users to set and persist a dark mode preference.
16-
1713
## Project Set Up
1814

1915
- [ ] Create a forked copy of this project.
@@ -41,6 +37,8 @@ Follow these steps for completing your project.
4137

4238
This is an important step for any project you will be working on. You will want to plan out what data you will need, which component will manage that data via state, what functions you may need to update that state, and where you need to pass the data to render it to the DOM. I love to use pen and paper or a whiteboard for this. The visuals can help a lot when you're deep into your code. After I finish that, I will write out a list of steps that I think it will take to build the app. This gives me a starting point, and direction as I proceed. This list always changes a bit as you are building, but it should give you a good flow and some good anchor points.
4339

40+
Also, since you have used the Github API before, you know some of the gotchas. Make sure to plan and watch for those.
41+
4442
When you have those completed, you're ready to start coding!
4543

4644
## STEP 1 - Fetch the User Data
@@ -49,7 +47,7 @@ When you have those completed, you're ready to start coding!
4947
- https://api.github.com/users/<your name>
5048
- After you fetch your data, set it to state
5149

52-
## STEP 2 - Display the user data
50+
## STEP 2 - Display the User Data
5351

5452
- Pass the data to the component that will be displaying it
5553
- Build out a user card using the data that the Github API returns to you

0 commit comments

Comments
 (0)