diff options
Diffstat (limited to 'src/background/index.js')
-rw-r--r-- | src/background/index.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/background/index.js b/src/background/index.js index ff27796..4f6b23f 100644 --- a/src/background/index.js +++ b/src/background/index.js @@ -1,6 +1,7 @@ import * as settingActions from 'background/actions/setting'; import messages from 'shared/messages'; import BackgroundComponent from 'background/components/background'; +import OperationComponent from 'background/components/operation'; import reducers from 'background/reducers'; import { createStore } from 'shared/store'; import * as versions from 'shared/versions'; @@ -16,6 +17,8 @@ const store = createStore(reducers, (e, sender) => { }); // eslint-disable-next-line no-unused-vars const backgroundComponent = new BackgroundComponent(store); +// eslint-disable-next-line no-unused-vars +const operationComponent = new OperationComponent(store); store.dispatch(settingActions.load()); |