mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
28 lines
465 B
Svelte
28 lines
465 B
Svelte
|
<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: [] }
|
||
|
}}
|
||
|
/>
|