forked from extern/bruno
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
import { configureStore } from '@reduxjs/toolkit';
|
|
import appReducer from './slices/app';
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
app:appReducer
|
|
}
|
|
});
|
|
|
|
export default store;
|