alessandro trinca tornidor
feat: add static files (vue3/tailwindcss frontend)
15d84c8
raw
history blame
127 Bytes
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
const app = createApp(App)
app.mount('#app')