25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

16 satır
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 };