1
0
mirror of https://github.com/comatory/fb2iCal synced 2025-02-23 06:57:51 +01:00
2020-12-25 09:59:13 +01:00

22 lines
490 B
Svelte

<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}