25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
334 B

  1. // third-party
  2. import { configureStore } from '@reduxjs/toolkit';
  3. // project import
  4. import reducers from './reducers';
  5. // ==============================|| REDUX TOOLKIT - MAIN STORE ||============================== //
  6. const store = configureStore({
  7. reducer: reducers
  8. });
  9. const { dispatch } = store;
  10. export { store, dispatch };