├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src ├── Cards.jsx ├── constants.js └── styles.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/package.json -------------------------------------------------------------------------------- /src/Cards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/src/Cards.jsx -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/src/styles.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomorrowIdeas/react-card-carousel/HEAD/webpack.config.js --------------------------------------------------------------------------------