blob: 382bfcd21331342a4e4253b96eef70cddb96cdfe [file] [log] [blame]
import { components, entry } from "django-airavata-common-ui";
import UserProfileContainer from "./containers/UserProfileContainer.vue";
import createStore from "./store";
entry((Vue) => {
const store = createStore(Vue);
new Vue({
store,
render: (h) => h(components.MainLayout, [h(UserProfileContainer)]),
}).$mount("#user-profile");
});