fix imports in src
This commit is contained in:
parent
5ef9a2a60c
commit
32168a94e0
25 changed files with 66 additions and 66 deletions
|
@ -1,13 +1,13 @@
|
|||
import './console-frame.scss';
|
||||
import * as consoleFrames from './console-frames';
|
||||
import * as scrolls from '../content/scrolls';
|
||||
import * as navigates from '../content/navigates';
|
||||
import * as followActions from '../actions/follow';
|
||||
import { createStore } from '../store';
|
||||
import ContentInputComponent from '../components/content-input';
|
||||
import FollowComponent from '../components/follow';
|
||||
import reducers from '../reducers';
|
||||
import operations from '../shared/operations';
|
||||
import * as scrolls from 'content/scrolls';
|
||||
import * as navigates from 'content/navigates';
|
||||
import * as followActions from 'actions/follow';
|
||||
import { createStore } from 'store';
|
||||
import ContentInputComponent from 'components/content-input';
|
||||
import FollowComponent from 'components/follow';
|
||||
import reducers from 'reducers';
|
||||
import operations from 'shared/operations';
|
||||
import messages from './messages';
|
||||
|
||||
const store = createStore(reducers);
|
||||
|
|
Reference in a new issue