├── .babelrc ├── .eslintrc ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── dist └── index.html ├── package.json ├── server.js ├── src ├── assets │ └── stylesheets │ │ └── base.scss ├── components │ ├── About.js │ ├── App.js │ ├── Home.js │ ├── Page.js │ ├── Root.js │ └── Sidenav.js └── index.js ├── test └── App.spec.js ├── webpack.config.js ├── webpack.prod.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/dist/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/server.js -------------------------------------------------------------------------------- /src/assets/stylesheets/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/src/assets/stylesheets/base.scss -------------------------------------------------------------------------------- /src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/src/components/About.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/src/components/Home.js -------------------------------------------------------------------------------- /src/components/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/src/components/Page.js -------------------------------------------------------------------------------- /src/components/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/src/components/Root.js -------------------------------------------------------------------------------- /src/components/Sidenav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/src/components/Sidenav.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/src/index.js -------------------------------------------------------------------------------- /test/App.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/test/App.spec.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/webpack.prod.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alanbsmith/react-router-example/HEAD/yarn.lock --------------------------------------------------------------------------------