blob: 09b69c33349ab2142da177f5c00364e29b931386 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<script lang="ts">
import LeftPanel from './components/LeftPanel.svelte';
import RightPanel from './components/RightPanel.svelte';
import MainPanel from './components/MainPanel.svelte';
import Loading from './components/Loading.svelte';
</script>
<LeftPanel />
<MainPanel />
<RightPanel />
<Loading />
|