blob: 9df1768a86d82cfbf77e3d4473ef78edaf3d82b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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 />
|