Display avatar

This commit is contained in:
MD. Ariful Alam
2021-08-21 21:57:26 +06:00
parent e6935a32b9
commit ec5344f0c9
9 changed files with 454 additions and 12977 deletions

View File

@@ -1,10 +1,12 @@
import { combineReducers, configureStore } from '@reduxjs/toolkit';
import loadingSlice from './slices/loadingSlice';
import profileSlice from './slices/profileSlice';
import themeSlice from './slices/themeSlice';
const rootReducer = combineReducers({
profile: profileSlice,
theme: themeSlice,
loading: loadingSlice,
})
export const store = configureStore({