CoolFace
Datasetpublic

gradio/frontend

sourceHugging Faceupdated 15h agoView on Hugging Face
1likes442kdownloads
Example.svelte12 linesDownload Raw Back to nativeplot
1<script lang="ts">2	export let title: string | null;3	export let x: string;4	export let y: string;5</script>6 7{#if title}8	{title}9{:else}10	{x} x {y}11{/if}12