File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 22var reducers_1 = require ( './reducers' ) ;
33var core_coderoad_1 = require ( 'core-coderoad' ) ;
44Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
5- exports . default = core_coderoad_1 . configureStore ( reducers_1 . default , false , { TEST_RUN : 800 } ) ;
5+ exports . default = core_coderoad_1 . configureStore ( {
6+ reducer : reducers_1 . default ,
7+ devMode : false ,
8+ throttle : { TEST_RUN : 800 } ,
9+ } ) ;
Original file line number Diff line number Diff line change 11import reducer from './reducers' ;
22import { configureStore } from 'core-coderoad' ;
33
4- export default configureStore (
4+ export default configureStore ( {
55 reducer,
6- // devMode
7- false ,
8- // throttled actions
9- { TEST_RUN : 800 }
10- ) ;
6+ devMode : false ,
7+ throttle : { TEST_RUN : 800 } ,
8+ } ) ;
You can’t perform that action at this time.
0 commit comments