Rewrite file manager in svelte

This commit is contained in:
2021-05-18 23:47:38 +02:00
parent 5875d187b6
commit 9f8d5cc8a2
9 changed files with 689 additions and 170 deletions

View File

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