my_gradio / js /multimodaltextbox /MultimodalTextboxExample.stories.svelte
xray918's picture
Upload folder using huggingface_hub
0ad74ed verified
raw
history blame contribute delete
465 Bytes
<script>
import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
import MultimodalTextbox from "./Example.svelte";
</script>
<Meta
title="Components/MultimodalTextbox/Example"
component={MultimodalTextbox}
/>
<Template let:args>
<MultimodalTextbox {...args} />
</Template>
<Story
name="Text value"
args={{
value: { text: "the quick brown fox", files: [] }
}}
/>
<Story
name="Empty Value"
args={{
value: { text: "", files: [] }
}}
/>