-
-
+
+
+
diff --git a/client/src/components/NavBar.vue b/client/src/components/NavBar.vue
deleted file mode 100644
index 145a817..0000000
--- a/client/src/components/NavBar.vue
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
diff --git a/client/src/components/Table.vue b/client/src/components/Table.vue
index 1f1ddec..338bd0b 100644
--- a/client/src/components/Table.vue
+++ b/client/src/components/Table.vue
@@ -2,9 +2,7 @@
| Date |
-
-
- |
+ {{ track.icon }} |
@@ -20,7 +18,6 @@
\ No newline at end of file
diff --git a/client/src/components/TrackIcon.vue b/client/src/components/TrackIcon.vue
deleted file mode 100644
index e5aeabf..0000000
--- a/client/src/components/TrackIcon.vue
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- {{props.icon}}
-
-
\ No newline at end of file
diff --git a/client/src/main.ts b/client/src/main.ts
index 90cdedc..26bcf20 100644
--- a/client/src/main.ts
+++ b/client/src/main.ts
@@ -1,12 +1,6 @@
import { createApp } from 'vue'
import './style.scss'
-import router from './router'
-import { state } from "./state";
-import 'bulma/css/bulma.css'
import App from './App.vue'
+import 'bulma/css/bulma.css'
-
-const app = createApp(App)
-app.use(router)
-app.mount('#app')
-state.populate()
+createApp(App).mount('#app')
diff --git a/client/src/router.ts b/client/src/router.ts
deleted file mode 100644
index 8d94d4c..0000000
--- a/client/src/router.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-import { createRouter, createWebHistory } from 'vue-router'
-import TableView from './views/TableView.vue'
-import NewTrackView from './views/NewTrackView.vue'
-
-const router = createRouter({
- history: createWebHistory(),
- routes: [
- { path: '/', component: TableView },
- { path: '/new-track', component: NewTrackView },
- { path: '/login', component: import('./views/Login.vue') }
- // for other pages:
- // {path: '/', component: import('./views/TableView.vue')}
- ]
-})
-
-export default router
\ No newline at end of file
diff --git a/client/src/state.ts b/client/src/state.ts
index 028ae4b..cc140cd 100644
--- a/client/src/state.ts
+++ b/client/src/state.ts
@@ -1,9 +1,6 @@
import { reactive } from "vue"
import { Track } from "./track"
-import { Tick } from './ticks'
import { error } from "./error"
-import { getCookie } from "./util";
-import router from './router'
enum State {
Unfetched,
@@ -11,44 +8,30 @@ enum State {
Fetched,
}
-interface LoggedInUser {
- name: string
-}
-
-class AppState {
- tracks: Array