├── .DS_Store ├── .gitattributes ├── README.md └── src ├── App.css ├── App.js ├── app └── store.js ├── index.css ├── index.js ├── reportWebVitals.js └── services └── users.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmilAbdullazadeh/react-redux-toolkit-rtk-query/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmilAbdullazadeh/react-redux-toolkit-rtk-query/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-redux-toolkit-rtk-query 2 | 3 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmilAbdullazadeh/react-redux-toolkit-rtk-query/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmilAbdullazadeh/react-redux-toolkit-rtk-query/HEAD/src/App.js -------------------------------------------------------------------------------- /src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmilAbdullazadeh/react-redux-toolkit-rtk-query/HEAD/src/app/store.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmilAbdullazadeh/react-redux-toolkit-rtk-query/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmilAbdullazadeh/react-redux-toolkit-rtk-query/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmilAbdullazadeh/react-redux-toolkit-rtk-query/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/services/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmilAbdullazadeh/react-redux-toolkit-rtk-query/HEAD/src/services/users.js --------------------------------------------------------------------------------