diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-05 20:14:58 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-05 20:14:58 +0900 |
commit | 32168a94e07478325a53779513533b76a6ef2c18 (patch) | |
tree | feb1a9fdc8f84e3360298e01abb6c79df5b4d2e4 /src/background | |
parent | 5ef9a2a60c99f24fe3df7035ae4dca574fc38c68 (diff) |
fix imports in src
Diffstat (limited to 'src/background')
-rw-r--r-- | src/background/index.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/background/index.js b/src/background/index.js index 9a1adc6..8dc55cb 100644 --- a/src/background/index.js +++ b/src/background/index.js @@ -1,10 +1,10 @@ -import * as consoleActions from '../actions/console'; -import * as settingsActions from '../actions/setting'; -import BackgroundComponent from '../components/background'; -import BackgroundInputComponent from '../components/background-input'; -import reducers from '../reducers'; -import messages from '../content/messages'; -import { createStore } from '../store'; +import * as consoleActions from 'actions/console'; +import * as settingsActions from 'actions/setting'; +import BackgroundComponent from 'components/background'; +import BackgroundInputComponent from 'components/background-input'; +import reducers from 'reducers'; +import messages from 'content/messages'; +import { createStore } from 'store'; const store = createStore(reducers, (e, sender) => { console.error('Vim-Vixen:', e); |