Convert admin panel to svelte

This commit is contained in:
2021-05-25 22:15:29 +02:00
parent c0045fa9d0
commit 74defb0cf0
18 changed files with 492 additions and 267 deletions

View File

@@ -0,0 +1,8 @@
import App from './admin_panel/AdminPanel.svelte';
const app = new App({
target: document.getElementById("page_content"),
props: {}
});
export default app;