frontend / 6.26.0 /nativeplot /Example.svelte
gradio-pr-bot's picture
Upload folder using huggingface_hub
770c8c9 verified
Raw
History Blame Contribute Delete
172 Bytes
<script lang="ts">
let {
title,
x,
y
}: {
title: string | null;
x: string;
y: string;
} = $props();
</script>
{#if title}
{title}
{:else}
{x} x {y}
{/if}