├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── Fetchers.js ├── helper-components │ ├── Dog1.js │ └── Dog2.js ├── index.js └── main-components │ ├── Axios.js │ ├── Fetch.js │ ├── ReactQuery.js │ └── Swr.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Fetchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/Fetchers.js -------------------------------------------------------------------------------- /src/helper-components/Dog1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/helper-components/Dog1.js -------------------------------------------------------------------------------- /src/helper-components/Dog2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/helper-components/Dog2.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/index.js -------------------------------------------------------------------------------- /src/main-components/Axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/main-components/Axios.js -------------------------------------------------------------------------------- /src/main-components/Fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/main-components/Fetch.js -------------------------------------------------------------------------------- /src/main-components/ReactQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/main-components/ReactQuery.js -------------------------------------------------------------------------------- /src/main-components/Swr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/src/main-components/Swr.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machadop1407/react-fetching-data/HEAD/yarn.lock --------------------------------------------------------------------------------