├── .babelrc ├── .gitignore ├── Makefile ├── README.md ├── app.js ├── client.js ├── package.json ├── reducers.js └── server.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephg/react-static-example/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | node_modules 3 | public/build.js 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephg/react-static-example/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephg/react-static-example/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephg/react-static-example/HEAD/app.js -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephg/react-static-example/HEAD/client.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephg/react-static-example/HEAD/package.json -------------------------------------------------------------------------------- /reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephg/react-static-example/HEAD/reducers.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephg/react-static-example/HEAD/server.js --------------------------------------------------------------------------------