mirror of
https://github.com/comatory/fb2iCal
synced 2025-06-05 22:09:25 +02:00
13 lines
226 B
Svelte
13 lines
226 B
Svelte
<script>
|
|
import TrackingPanel from './TrackingPanel.svelte'
|
|
|
|
import { configStore } from '../stores'
|
|
|
|
$: showTrackingPanel = $configStore.track === undefined
|
|
</script>
|
|
|
|
{#if showTrackingPanel}
|
|
<TrackingPanel />
|
|
{/if}
|
|
|