import { configureStore } from '@reduxjs/toolkit'; import workflowReducer from './workflowSlice'; export const store = configureStore({ reducer: { workflow: workflowReducer, }, }); export type RootState = ReturnType; export type AppDispatch = typeof store.dispatch;