diff options
Diffstat (limited to 'src/App.svelte')
| -rw-r--r-- | src/App.svelte | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/App.svelte b/src/App.svelte new file mode 100644 index 0000000..9df1768 --- /dev/null +++ b/src/App.svelte @@ -0,0 +1,12 @@ +<script lang="ts"> + +import LeftPanel from './components/LeftPanel.svelte'; +import RightPanel from './components/RightPanel.svelte'; +import MainPanel from './components/MainPanel.svelte'; + +</script> + +<LeftPanel /> +<MainPanel /> +<RightPanel /> + |
