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