WIP: Feature: Add Track form #1

Closed
scott wants to merge 5 commits from feature/add-track-form into main
2 changed files with 3 additions and 3 deletions
Showing only changes of commit afacdaa3dd - Show all commits

View file

@ -1,8 +1,5 @@
<script setup lang="ts">
import Table from "./components/Table.vue";
import { state } from "./state";
state.populate()
</script>
<template>

View file

@ -1,6 +1,9 @@
import { createApp } from 'vue'
import './style.scss'
import App from './App.vue'
import { state } from "./state";
import 'bulma/css/bulma.css'
createApp(App).mount('#app')
state.populate()