├── .babelrc ├── .eslintrc.json ├── .flowconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── demo ├── components │ └── app │ │ └── index.js ├── index.html ├── main.js └── styles.css ├── lib ├── components │ └── cluster.js └── index.js ├── package.json ├── test ├── components │ └── cluster.test.js ├── mocha.opts └── support │ └── helper.js ├── webpack.build.config.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | demo/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/README.md -------------------------------------------------------------------------------- /demo/components/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/demo/components/app/index.js -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/demo/main.js -------------------------------------------------------------------------------- /demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/demo/styles.css -------------------------------------------------------------------------------- /lib/components/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/lib/components/cluster.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./components/cluster'); 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/package.json -------------------------------------------------------------------------------- /test/components/cluster.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/test/components/cluster.test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/support/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/test/support/helper.js -------------------------------------------------------------------------------- /webpack.build.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/webpack.build.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayrton/react-cluster/HEAD/webpack.config.js --------------------------------------------------------------------------------