├── .babelrc ├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── config └── testSetup.js ├── index.d.ts ├── package.json └── src ├── Fetch.js ├── Fetch.test.js ├── SimpleCache.js ├── SimpleCache.test.js ├── index.js └── utils.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/TODO.md -------------------------------------------------------------------------------- /config/testSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/config/testSetup.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/package.json -------------------------------------------------------------------------------- /src/Fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/src/Fetch.js -------------------------------------------------------------------------------- /src/Fetch.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/src/Fetch.test.js -------------------------------------------------------------------------------- /src/SimpleCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/src/SimpleCache.js -------------------------------------------------------------------------------- /src/SimpleCache.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/src/SimpleCache.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techniq/react-fetch-component/HEAD/src/utils.js --------------------------------------------------------------------------------