├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── public └── index.html ├── src ├── containers │ ├── HelloAgainWorld.js │ └── HelloWorld.js ├── data.js ├── index.js ├── router.js └── style.css └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/public/index.html -------------------------------------------------------------------------------- /src/containers/HelloAgainWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/src/containers/HelloAgainWorld.js -------------------------------------------------------------------------------- /src/containers/HelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/src/containers/HelloWorld.js -------------------------------------------------------------------------------- /src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/src/data.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/src/index.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/src/router.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/src/style.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jon-Biz/simple-static-react-router/HEAD/webpack.config.js --------------------------------------------------------------------------------