frontend / 6.2.0 /nativeplot /Example.svelte
gradio-pr-bot's picture
Upload folder using huggingface_hub
5f5d42d verified
<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}