Commit c6884cfe authored by Simon Knox's avatar Simon Knox

fix exports

parent bc5aa3a6
import ClustersIndex from '~/clusters/clusters_index';
export default new ClustersIndex();
export default () => {
new ClustersIndex(); // eslint-disable-line no-new
};
import ClustersBundle from '~/clusters/clusters_bundle';
export default new ClustersBundle();
export default () => {
new ClustersBundle(); // eslint-disable-line no-new
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment