Initial commit

This commit is contained in:
2024-04-26 14:23:27 +01:00
commit a7854fbbe3
32 changed files with 1524 additions and 0 deletions

5
frontend/src/main.js Normal file
View File

@@ -0,0 +1,5 @@
import {createApp} from 'vue'
import App from './App.vue'
import './style.css';
createApp(App).mount('#app')