@@ -520,11 +520,11 @@ const mapDispatchToProps = (dispatch: Dispatch) => ({
520520import { connect } from ' react-redux' ;
521521
522522import { RootState } from ' @src/redux' ;
523- import { countersActions , CountersSelectors } from ' @src/redux/counters' ;
523+ import { countersActions , countersSelectors } from ' @src/redux/counters' ;
524524import { SFCCounter } from ' @src/components' ;
525525
526526const mapStateToProps = (state : RootState ) => ({
527- count: CountersSelectors .getReduxCounter (state ),
527+ count: countersSelectors .getReduxCounter (state ),
528528});
529529
530530export const SFCCounterConnected = connect (mapStateToProps , {
@@ -596,15 +596,15 @@ export default () => (
596596import { connect } from ' react-redux' ;
597597
598598import { RootState } from ' @src/redux' ;
599- import { countersActions , CountersSelectors } from ' @src/redux/counters' ;
599+ import { countersActions , countersSelectors } from ' @src/redux/counters' ;
600600import { SFCCounter } from ' @src/components' ;
601601
602602export interface SFCCounterConnectedExtended {
603603 initialCount: number ;
604604}
605605
606606const mapStateToProps = (state : RootState , ownProps : SFCCounterConnectedExtended ) => ({
607- count: CountersSelectors .getReduxCounter (state ) + ownProps .initialCount ,
607+ count: countersSelectors .getReduxCounter (state ) + ownProps .initialCount ,
608608});
609609
610610export const SFCCounterConnectedExtended = connect (mapStateToProps , {
0 commit comments