├── .canvas ├── .github └── workflows │ └── canvas-sync-html.yml ├── .gitignore ├── .learn ├── README.md ├── index.html ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.js ├── __tests__ ├── CatList.test.js ├── Cats.test.js └── catsSlice.test.js ├── features └── cats │ ├── CatList.js │ ├── Cats.js │ └── catsSlice.js ├── index.js ├── reducer.js └── store.js /.canvas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/.canvas -------------------------------------------------------------------------------- /.github/workflows/canvas-sync-html.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/.github/workflows/canvas-sync-html.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.learn: -------------------------------------------------------------------------------- 1 | --- 2 | languages: [] 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/App.js -------------------------------------------------------------------------------- /src/__tests__/CatList.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/__tests__/CatList.test.js -------------------------------------------------------------------------------- /src/__tests__/Cats.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/__tests__/Cats.test.js -------------------------------------------------------------------------------- /src/__tests__/catsSlice.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/__tests__/catsSlice.test.js -------------------------------------------------------------------------------- /src/features/cats/CatList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/features/cats/CatList.js -------------------------------------------------------------------------------- /src/features/cats/Cats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/features/cats/Cats.js -------------------------------------------------------------------------------- /src/features/cats/catsSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/features/cats/catsSlice.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/reducer.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-co-curriculum/react-hooks-redux-toolkit/HEAD/src/store.js --------------------------------------------------------------------------------