1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-02-17 12:10:36 +01:00

22 lines
490 B
Svelte
Raw Normal View History

<script>
import InputContainer from './InputContainer.svelte'
import EventList from './EventList.svelte'
import Status from './Status.svelte'
import TrackingPanel from './TrackingPanel.svelte'
import { configStore, eventStore } from '../stores'
$: showTrackingPanel = $configStore.track === undefined
$: showEventList = $eventStore.events.length > 0
</script>
{#if showTrackingPanel}
<TrackingPanel />
{/if}
<InputContainer />
{#if showEventList}
<EventList />
{/if}