🐨 Removes unused components

This commit is contained in:
Rune Harlyk
2024-02-06 19:57:26 +01:00
parent 9fdb1de483
commit a2bb5b5312
7 changed files with 0 additions and 104 deletions
-4
View File
@@ -4,8 +4,6 @@
import TopBar from './components/TopBar.svelte';
import { connect } from './lib/socket';
import Controller from './routes/Controller.svelte';
import Config from './routes/Config.svelte';
import Health from './routes/SystemHealth.svelte';
import FileCache from './lib/cache';
import { socketLocation } from './lib/location';
import Settings from './routes/Settings.svelte';
@@ -45,7 +43,5 @@
<div class="absolute w-full h-full bg-background text-on-background">
<Route path="/" component={Controller} />
<Route path="/settings/*page" component={Settings} />
<Route path="/config" component={Config} />
<Route path="/health" component={Health} />
</div>
</Router>