Skip to content

Commit

Permalink
(chore) improve imports
Browse files Browse the repository at this point in the history
  • Loading branch information
vinogradov committed Oct 20, 2017
1 parent cc2d2a0 commit 49d8528
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/examples/redux/one-file/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import React from 'react';
import ReactDOM from 'react-dom';
import {Provider, connect} from 'react-redux';
import PropTypes from 'prop-types';
import {createStore, applyMiddleware, combineReducers} from 'redux';
Expand Down
2 changes: 1 addition & 1 deletion src/examples/redux/separate-files/counter.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import {connect} from 'react-redux';
import PropTypes from 'prop-types';
import {connect} from 'react-redux';
import {mapStateToProps} from './map-state';
import {incrementAction, decrementAction, decrementAsyncAction} from './actions';

Expand Down

0 comments on commit 49d8528

Please sign in to comment.