├── .gitignore ├── .nvmrc ├── .nycrc ├── LICENSE ├── README.md ├── circle.yml ├── package.json ├── src └── index.js └── tests ├── helpers ├── render-into-app.js └── test-setup.js └── index.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 6.9.4 2 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/.nycrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/helpers/render-into-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/tests/helpers/render-into-app.js -------------------------------------------------------------------------------- /tests/helpers/test-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/tests/helpers/test-setup.js -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JakeSidSmith/react-fastclick/HEAD/tests/index.test.js --------------------------------------------------------------------------------