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.
|
- // third-party
- import { configureStore } from '@reduxjs/toolkit';
-
- // project import
- import reducers from './reducers';
-
- // ==============================|| REDUX TOOLKIT - MAIN STORE ||============================== //
-
- const store = configureStore({
- reducer: reducers
- });
-
- const { dispatch } = store;
-
- export { store, dispatch };
|