22 lines
446 B
Plaintext
22 lines
446 B
Plaintext
---
|
|
to: <%= to %>
|
|
---
|
|
<Meta title="<%= component %>" component={<%= component %>} argTypes={{}} />
|
|
|
|
<Story name="Primary" args={{}} />
|
|
|
|
<Template let:args>
|
|
<div style="width: 50em">
|
|
<<%= component %> />
|
|
</div>
|
|
</Template>
|
|
|
|
<script>
|
|
import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
|
|
import { action } from "@storybook/addon-actions";
|
|
|
|
import <%= component %> from './<%=
|
|
h.path.basename(path)
|
|
%>';
|
|
</script>
|