phase 1 & 2 first

This commit is contained in:
Julian Freeman
2026-01-18 22:55:12 -04:00
parent 54c9474894
commit 8a92eea397
19 changed files with 6496 additions and 193 deletions

View File

@@ -1,4 +1,8 @@
import { createApp } from "vue";
import { createPinia } from "pinia";
import "./style.css";
import App from "./App.vue";
createApp(App).mount("#app");
const app = createApp(App);
app.use(createPinia());
app.mount("#app");