import { createApp } from 'vue'
import App from './app/App.vue'
import './style.css'

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