fix exports
This commit is contained in:
parent
bc5aa3a60a
commit
c6884cfe66
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
||||||
import ClustersIndex from '~/clusters/clusters_index';
|
import ClustersIndex from '~/clusters/clusters_index';
|
||||||
|
|
||||||
export default new ClustersIndex();
|
export default () => {
|
||||||
|
new ClustersIndex(); // eslint-disable-line no-new
|
||||||
|
};
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
import ClustersBundle from '~/clusters/clusters_bundle';
|
import ClustersBundle from '~/clusters/clusters_bundle';
|
||||||
|
|
||||||
export default new ClustersBundle();
|
export default () => {
|
||||||
|
new ClustersBundle(); // eslint-disable-line no-new
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in a new issue