├── .babelrc ├── .eslintrc ├── .gitignore ├── README.md ├── dist ├── bundle.js └── index.html ├── index.html ├── package.json ├── screenshot.png ├── server.js ├── src ├── App.js ├── actions │ ├── ActionTypes.js │ ├── CircleActions.js │ └── index.js ├── components │ ├── Circles.jsx │ ├── CirclesHandler.jsx │ └── index.js ├── index.js └── reducers │ ├── circle.js │ └── index.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/README.md -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/dist/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/screenshot.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/server.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/src/App.js -------------------------------------------------------------------------------- /src/actions/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/src/actions/ActionTypes.js -------------------------------------------------------------------------------- /src/actions/CircleActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/src/actions/CircleActions.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- 1 | export * from './CircleActions'; 2 | -------------------------------------------------------------------------------- /src/components/Circles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/src/components/Circles.jsx -------------------------------------------------------------------------------- /src/components/CirclesHandler.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/src/components/CirclesHandler.jsx -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/src/reducers/circle.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- 1 | export * from './circle'; 2 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartgryszko/react-motion-example/HEAD/webpack.config.js --------------------------------------------------------------------------------