implement directory navigator in svelte

This commit is contained in:
2020-11-11 00:00:54 +01:00
parent eb94d4190c
commit 253315a9b7
26 changed files with 6406 additions and 55 deletions

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

@@ -0,0 +1,8 @@
import App from './filesystem/Filesystem.svelte';
const app = new App({
target: document.body,
props: {}
});
export default app;