File tree Expand file tree Collapse file tree 3 files changed +39
-1
lines changed
Expand file tree Collapse file tree 3 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 1- node_modules /*
1+ node_modules /*
2+ * node_modules
3+ * /package.json
Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 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+ ```
You can’t perform that action at this time.
0 commit comments