Skip to content

Commit

Permalink
moving files around
Browse files Browse the repository at this point in the history
  • Loading branch information
alexreardon committed May 15, 2018
1 parent a0fd7e8 commit 25b5b36
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// @flow
import invariant from 'tiny-invariant';
import middleware from '../../../../../src/state/middleware/hooks';
import messagePreset from '../../../../../src/state/middleware/util/message-preset';
import { add } from '../../../../../src/state/position';
import middleware from '../../../../src/state/middleware/hooks';
import messagePreset from '../../../../src/state/middleware/util/message-preset';
import { add } from '../../../../src/state/position';
import {
clean,
prepare,
Expand All @@ -15,10 +15,10 @@ import {
type InitialPublishArgs,
type MoveArgs,
type BulkReplaceArgs,
} from '../../../../../src/state/action-creators';
import createStore from '../create-store';
import { getPreset } from '../../../../utils/dimension';
import getViewport from '../../../../../src/view/window/get-viewport';
} from '../../../../src/state/action-creators';
import createStore from './util/create-store';
import { getPreset } from '../../../utils/dimension';
import getViewport from '../../../../src/view/window/get-viewport';
import type {
DraggableLocation,
Store,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @flow
import { createStore, compose, applyMiddleware } from 'redux';
import reducer from '../../../../src/state/reducer';
import type { Store } from '../../../../src/types';
import reducer from '../../../../../src/state/reducer';
import type { Store } from '../../../../../src/types';

export default (...middleware: mixed[]): Store => createStore(
reducer,
Expand Down

0 comments on commit 25b5b36

Please sign in to comment.