https://github.com/ultimatecourses/react-state-management-course
https://github.com/ultimatecourses/react-state-management-course
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ultimatecourses/react-state-management-course
- Owner: ultimatecourses
- Created: 2020-04-16T16:49:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-23T23:11:39.000Z (over 5 years ago)
- Last Synced: 2024-05-21T11:19:16.000Z (about 2 years ago)
- Language: JavaScript
- Size: 696 KB
- Stars: 7
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Setup
```
cd course
yarn
yarn start
```
### Running the app from a video
If you want to run the app from a specific video, open up `course/src/index.js`
Change the `App` import, to point to the video you want to run. Ex:
```js
import React from "react";
import ReactDOM from "react-dom";
import { App } from "./01-useState/App"; // Change this import, and the app will run that video courses' final code
ReactDOM.render(
,
document.getElementById("root")
);
```