├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── app └── store.js ├── components ├── Create.jsx ├── CustomModal.css ├── CustomModal.jsx ├── Navbar.jsx ├── Read.jsx └── Update.jsx ├── features └── userDetailSlice.js ├── index.css └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/App.js -------------------------------------------------------------------------------- /src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/app/store.js -------------------------------------------------------------------------------- /src/components/Create.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/components/Create.jsx -------------------------------------------------------------------------------- /src/components/CustomModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/components/CustomModal.css -------------------------------------------------------------------------------- /src/components/CustomModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/components/CustomModal.jsx -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/components/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Read.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/components/Read.jsx -------------------------------------------------------------------------------- /src/components/Update.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/components/Update.jsx -------------------------------------------------------------------------------- /src/features/userDetailSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/features/userDetailSlice.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highhimanshu/crud-using-rtk-and-asyncthunk/HEAD/src/index.js --------------------------------------------------------------------------------