import { createApp } from 'vue'
import App from './AppSetup.vue'

const app = createApp(App)
app.mount('#app')
