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.