Fetch repo

This commit is contained in:
MD. Ariful Alam
2021-08-23 01:08:27 +06:00
parent eff1e1fd08
commit 3924ed3288
5 changed files with 91 additions and 156 deletions

View File

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