Skip to content

Commit ee0e783

Browse files
author
Harshit Kumar
committed
Added READMEs
1 parent 44527ea commit ee0e783

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
node_modules/*
1+
node_modules/*
2+
*node_modules
3+
*/package.json

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
###Prerequisites
2+
* HTML, CSS
3+
* Understanding of Basic Javascript
4+
* Node and npm/yarn
5+
6+
### What you'll learn :
7+
* Setting up a React Project
8+
* Setting up webpack
9+
* JSX Syntax
10+
* Stateless vs Stateful components
11+
* Component LifeCycle Methods
12+
* Conditional Rendering
13+
* Refs
14+
* Higher Order Components
15+
* Intro to Redux
16+
17+
### Lessons
18+
* [Lesson 1 - Setting up a React Project](lesson_1/README.md)

lesson_1/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#Lesson 1
2+
3+
## Where to start?
4+
5+
Here are a few resources:
6+
7+
[Official React Tutorial](https://reactjs.org/tutorial/tutorial.html)
8+
9+
[Egghead](https://egghead.io/technologies/react)
10+
11+
12+
Setup the React Project:
13+
14+
```
15+
npm init
16+
npm install react --save
17+
18+
```

0 commit comments

Comments
 (0)