mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
17 lines
430 B
Svelte
17 lines
430 B
Svelte
<script>
|
|
import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
|
|
import Row from "./static";
|
|
import Image from "@gradio/image/interactive";
|
|
</script>
|
|
|
|
<Meta title="Layout Elements/Row" component={Row} />
|
|
|
|
<Template let:args>
|
|
<Row {...args}>
|
|
<Image {...args} value="https://i.ibb.co/6BgKdSj/groot.jpg" />
|
|
<Image {...args} value="https://i.ibb.co/6BgKdSj/groot.jpg" />
|
|
</Row>
|
|
</Template>
|
|
|
|
<Story name="Row" />
|