Skip to content

Commit

Permalink
remove page/common directory
Browse files Browse the repository at this point in the history
  • Loading branch information
koriym committed Dec 19, 2016
1 parent fa46843 commit 9bba475
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ui-skeleton/redux/ui/src/page/example/app/client.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import configureStore from '../common/store/configureStore';
import App from '../common/components/App';
import configureStore from '../store/configureStore';
import App from '../components/App';

global.App = App;
global.configureStore = configureStore;
4 changes: 2 additions & 2 deletions ui-skeleton/redux/ui/src/page/example/app/server.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import configureStore from '../common/store/configureStore';
import App from '../common/components/App';
import configureStore from '../store/configureStore';
import App from '../components/App';

global.App = App;
global.configureStore = configureStore;
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { connect } from 'react-redux';
import { helloWorld } from '../actions';
import Hello from './../components/Hello';
import Hello from '../components/Hello';

const mapStateToProps = (state) => ({
message: state.hello.message,
Expand Down

0 comments on commit 9bba475

Please sign in to comment.