A starter React project for building a simple to-do list of items
/
├── .babelrc <- Babel config file
├── package.json <- Package description for Yarn/NPM
├── src <- Source code folder
│ ├── App.js <- Your app
│ ├── index.html <- HTML entry point
│ └── index.js <- React root JS (entry point)
├── webpack.config.js <- Webpack config file
└── yarn.lock
- Install node and yarn
- Clone this repo and cd into it
- Run
yarn installto install required dependencies - Run
yarn startto run your site in development mode
For production builds, run yarn build to generate an HTML and JS file for your app. This can be served elsewhere.
Check out React's getting started guides to help continue on with this project.