├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bin └── sra.js ├── package.json ├── src ├── App.jsx ├── Routes.jsx ├── assets │ └── React-icon.png ├── containers │ ├── About.jsx │ ├── Home.jsx │ └── index.js ├── index.html ├── index.jsx ├── style.scss └── tests │ ├── __mock__ │ └── fileTransformer.js │ ├── __tests__ │ ├── About.test.js │ ├── App.test.js │ ├── Home.test.js │ └── Routes.test.js │ └── setup.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | tests -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/README.md -------------------------------------------------------------------------------- /bin/sra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/bin/sra.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/package.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/Routes.jsx -------------------------------------------------------------------------------- /src/assets/React-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/assets/React-icon.png -------------------------------------------------------------------------------- /src/containers/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/containers/About.jsx -------------------------------------------------------------------------------- /src/containers/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/containers/Home.jsx -------------------------------------------------------------------------------- /src/containers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/containers/index.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/style.scss -------------------------------------------------------------------------------- /src/tests/__mock__/fileTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/tests/__mock__/fileTransformer.js -------------------------------------------------------------------------------- /src/tests/__tests__/About.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/tests/__tests__/About.test.js -------------------------------------------------------------------------------- /src/tests/__tests__/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/tests/__tests__/App.test.js -------------------------------------------------------------------------------- /src/tests/__tests__/Home.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/tests/__tests__/Home.test.js -------------------------------------------------------------------------------- /src/tests/__tests__/Routes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/tests/__tests__/Routes.test.js -------------------------------------------------------------------------------- /src/tests/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/src/tests/setup.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kornil/simple-react-app/HEAD/webpack.config.js --------------------------------------------------------------------------------