App de practica, Redux Tolkit y RTK Query
Ejecutar el siguiente comando en la terminal:
yarn
-
/
- CounterApp
- Tollkit (Slice, Thunk)
-
/pokemon
- PokemonApp
- Tollkit (Slice, Thunk)
-
/todo
- TodoApp
- RTK Query
Carpeta src
├── api
│ └── pokemonApi.js
├── App.css
├── App.jsx
├── assets
│ └── react.svg
├── index.css
├── main.jsx
├── pages
│ ├── CounterApp.jsx
│ ├── PokemonApp.jsx
│ └── TodoApp.jsx
└── store
├── api
│ └── todosApi.js
├── index.js
├── slices
│ ├── counter
│ │ ├── counterSlice.js
│ │ └── index.js
│ └── pokemon
│ ├── index.js
│ ├── pokemonSlice.js
│ └── thunks.js
└── store.js