forked from 77media/video-flow
11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import { configureStore } from '@reduxjs/toolkit';
|
|
import workflowReducer from './workflowSlice';
|
|
|
|
export const store = configureStore({
|
|
reducer: {
|
|
workflow: workflowReducer,
|
|
},
|
|
});
|
|
|
|
export type RootState = ReturnType<typeof store.getState>;
|
|
export type AppDispatch = typeof store.dispatch;
|