├── .gitignore ├── README.md ├── package.json ├── template.json └── template ├── README.md ├── gitignore ├── public └── index.html └── src ├── App.js ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appacademy/create-react-app-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appacademy/create-react-app-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appacademy/create-react-app-template/HEAD/package.json -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appacademy/create-react-app-template/HEAD/template.json -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appacademy/create-react-app-template/HEAD/template/README.md -------------------------------------------------------------------------------- /template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appacademy/create-react-app-template/HEAD/template/gitignore -------------------------------------------------------------------------------- /template/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appacademy/create-react-app-template/HEAD/template/public/index.html -------------------------------------------------------------------------------- /template/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appacademy/create-react-app-template/HEAD/template/src/App.js -------------------------------------------------------------------------------- /template/src/index.css: -------------------------------------------------------------------------------- 1 | /* TODO Add site wide styles */ 2 | -------------------------------------------------------------------------------- /template/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appacademy/create-react-app-template/HEAD/template/src/index.js --------------------------------------------------------------------------------