Rewrite user home page in svelte

This commit is contained in:
2021-09-21 21:39:28 +02:00
parent 8ec548351e
commit 11132854b2
18 changed files with 817 additions and 52 deletions

8
svelte/src/user_home.js Normal file
View File

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