mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
8dd6f4bc19
* handle null examples * add changeset * add changeset * lint * merge conflict * fixes * add changeset * stories * feedback * examples --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
25 lines
376 B
Svelte
25 lines
376 B
Svelte
<script>
|
|
import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
|
|
import Textbox from "./Example.svelte";
|
|
</script>
|
|
|
|
<Meta title="Components/Textbox/Example" component={Textbox} />
|
|
|
|
<Template let:args>
|
|
<Textbox {...args} />
|
|
</Template>
|
|
|
|
<Story
|
|
name="Text value"
|
|
args={{
|
|
value: "the quick brown fox"
|
|
}}
|
|
/>
|
|
|
|
<Story
|
|
name="Null"
|
|
args={{
|
|
value: null
|
|
}}
|
|
/>
|