├── .gitignore ├── README.md ├── Routes.jsx ├── about └── index.html ├── bundle.js ├── components ├── About.jsx ├── Header.jsx ├── Index.jsx └── Root.jsx ├── css └── base.css ├── data.js ├── entry.js ├── index.html ├── package.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/README.md -------------------------------------------------------------------------------- /Routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/Routes.jsx -------------------------------------------------------------------------------- /about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/about/index.html -------------------------------------------------------------------------------- /bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/bundle.js -------------------------------------------------------------------------------- /components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/components/About.jsx -------------------------------------------------------------------------------- /components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/components/Header.jsx -------------------------------------------------------------------------------- /components/Index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/components/Index.jsx -------------------------------------------------------------------------------- /components/Root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/components/Root.jsx -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/css/base.css -------------------------------------------------------------------------------- /data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/data.js -------------------------------------------------------------------------------- /entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/entry.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/package.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hew/react-static-boilerplate-ES6/HEAD/webpack.config.js --------------------------------------------------------------------------------