├── .all-contributorsrc ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── example.png ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .prettierrc ├── .travis.yml ├── README.md ├── babel.config.json ├── code_of_conduct.md ├── contributing.md ├── license ├── package-scripts.js ├── package.json ├── rollup.config.js ├── src ├── components.js ├── demo │ ├── index.html │ └── index.js ├── hooks.js ├── index.js └── utils.js ├── tests ├── __snapshots__ │ └── index.test.js.snap ├── index.test.js └── utils.test.js ├── webpack.config.js └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | coverage 3 | flow-typed 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/.github/example.png -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/babel.config.json -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/contributing.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/license -------------------------------------------------------------------------------- /package-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/package-scripts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/src/components.js -------------------------------------------------------------------------------- /src/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/src/demo/index.html -------------------------------------------------------------------------------- /src/demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/src/demo/index.js -------------------------------------------------------------------------------- /src/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/src/hooks.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/tests/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /tests/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/tests/index.test.js -------------------------------------------------------------------------------- /tests/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/tests/utils.test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DJTB/react-furi/HEAD/yarn.lock --------------------------------------------------------------------------------