├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.html ├── package.json ├── src ├── Container.jsx ├── container.test.js ├── demo │ └── index.js └── index.js └── webpack.config.demo.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env", "react"] 3 | } -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/package.json -------------------------------------------------------------------------------- /src/Container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/src/Container.jsx -------------------------------------------------------------------------------- /src/container.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/src/container.test.js -------------------------------------------------------------------------------- /src/demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/src/demo/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/src/index.js -------------------------------------------------------------------------------- /webpack.config.demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snikas/react-styled-flexbox/HEAD/webpack.config.demo.js --------------------------------------------------------------------------------