8 lines
No EOL
181 B
TypeScript
8 lines
No EOL
181 B
TypeScript
import { configureStore } from '@reduxjs/toolkit';
|
|
import dataReducer from './dataStore';
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
data: dataReducer,
|
|
},
|
|
}); |