gradio / _frontend_code /box /Index.svelte
hd0013's picture
Upload folder using huggingface_hub
8fdc036 verified
raw
history blame contribute delete
No virus
239 Bytes
<script lang="ts">
import { Block } from "@gradio/atoms";
export let elem_id: string;
export let elem_classes: string[];
export let visible = true;
</script>
<Block {elem_id} {elem_classes} {visible} explicit_call>
<slot />
</Block>