refactor: redux migration - toggle menubar

This commit is contained in:
Anoop M D
2022-03-17 09:41:27 +05:30
parent 8b48a388ad
commit b46d3c5a9e
10 changed files with 260 additions and 46 deletions

View File

@@ -0,0 +1,10 @@
import { configureStore } from '@reduxjs/toolkit';
import appReducer from './slices/app';
export const store = configureStore({
reducer: {
app:appReducer
}
});
export default store;