gradio/js/row/Row.stories.svelte
pngwn 1419538ea7
Refactor component directories (#5074)
* asd

* changes

* fix everything

* cleanup

* add changeset

* fix casing

* lockfile

* fix casing

* fix ci, enable linting

* fix test

* add changeset

* add changeset

* delete changeset

* fix dirs

* fix casing

* fix notebooks

* fix casing

* fix casing

* fix casing

* fix casing

* fix casing

* fix casing

* fix casing

* fix casing

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2023-08-03 23:01:18 +01:00

17 lines
418 B
Svelte

<script>
import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
import Row from "./static";
import Image from "@gradio/image";
</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" />