Skip to content

Commit

Permalink
Remove unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Jun 30, 2015
1 parent e426039 commit 34d90b9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/counter/containers/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import CounterApp from './CounterApp';
import { createStore } from 'redux/index';
import { createStore } from 'redux';
import { Provider } from 'redux/react';
import * as reducers from '../reducers';

Expand Down
2 changes: 1 addition & 1 deletion examples/counter/containers/CounterApp.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { bindActionCreators } from 'redux/index';
import { bindActionCreators } from 'redux';
import { connect } from 'redux/react';
import Counter from '../components/Counter';
import * as CounterActions from '../actions/CounterActions';
Expand Down
5 changes: 2 additions & 3 deletions examples/todomvc/containers/App.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import React from 'react';
import TodoApp from './TodoApp';
import { createStore, composeReducers } from 'redux/index';
import { createStore } from 'redux';
import { Provider } from 'redux/react';
import * as reducers from '../reducers';

const reducer = composeReducers(reducers);
const store = createStore(reducer);
const store = createStore(reducers);

export default class App {
render() {
Expand Down
2 changes: 1 addition & 1 deletion examples/todomvc/containers/TodoApp.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import { bindActionCreators } from 'redux/index';
import { bindActionCreators } from 'redux';
import { Connector } from 'redux/react';
import Header from '../components/Header';
import MainSection from '../components/MainSection';
Expand Down

0 comments on commit 34d90b9

Please sign in to comment.