App.svelte 243 B

123456789101112
  1. <script lang="ts">
  2. import LeftPanel from './components/LeftPanel.svelte';
  3. import RightPanel from './components/RightPanel.svelte';
  4. import MainPanel from './components/MainPanel.svelte';
  5. </script>
  6. <LeftPanel />
  7. <MainPanel />
  8. <RightPanel />