under-falling-skies/src/routes/campaign/[campaignId]/+page.svelte

16 lines
267 B
Svelte
Raw Normal View History

2023-01-12 21:42:34 +00:00
<article>
2023-01-12 23:02:29 +00:00
{#if $activeCampaign}
<h5>{$activeCampaign.name}</h5>
<h6>Chapter 1</h6>
<ul>
<li>Battle of New York, ongoing</li>
</ul>
{/if}
2023-01-12 21:42:34 +00:00
</article>
<script>
import { getContext } from 'svelte';
const { activeCampaign } = getContext('api');
</script>