File size: 156 Bytes
0ad74ed
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
<script lang="ts">
	export let title: string | null;
	export let x: string;
	export let y: string;
</script>

{#if title}
	{title}
{:else}
	{x} x {y}
{/if}