選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

16 行
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 };