gtp-final / gradio /js /nativeplot /Example.svelte
calvesca's picture
Upload folder using huggingface_hub
0bd62e5 verified
raw
history blame
167 Bytes
<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}