import { createApp } from "vue";
import AppMain from "./AppSamgis.vue";

const main = createApp(AppMain);

main.mount("#root_samgis");