├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── lib └── index.js ├── package.json ├── src ├── index.html ├── index.tpl.html └── main.js ├── webpack.build.config.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | *.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/src/index.tpl.html -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/src/main.js -------------------------------------------------------------------------------- /webpack.build.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/webpack.build.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianalfoni/react-simple-flex/HEAD/webpack.config.js --------------------------------------------------------------------------------