Use default exports
This commit is contained in:
parent
4f7d095ec0
commit
631d0c395c
3 changed files with 6 additions and 2 deletions
|
@ -15,3 +15,5 @@ export const draft: Module<DraftState, AppState> = {
|
||||||
//mutations,
|
//mutations,
|
||||||
//getters,
|
//getters,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export default draft;
|
||||||
|
|
|
@ -8,8 +8,8 @@ import actions from "./actions";
|
||||||
import mutations from "./mutations";
|
import mutations from "./mutations";
|
||||||
import getters from "./getters";
|
import getters from "./getters";
|
||||||
|
|
||||||
import { network } from "./network";
|
import network from "./network";
|
||||||
import { draft } from "./draft";
|
import draft from "./draft";
|
||||||
|
|
||||||
const store: StoreOptions<AppState> = {
|
const store: StoreOptions<AppState> = {
|
||||||
state: {
|
state: {
|
||||||
|
|
|
@ -20,3 +20,5 @@ export const network: Module<NetworkState, AppState> = {
|
||||||
//mutations,
|
//mutations,
|
||||||
getters
|
getters
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export default network;
|
||||||
|
|
Loading…
Reference in a new issue