mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-12-02 18:57:26 +00:00
21 lines
488 B
TypeScript
21 lines
488 B
TypeScript
import { Meta, StoryObj } from '@storybook/vue3';
|
|
import auth_form from './auth.form.vue';
|
|
const meta = {
|
|
title: 'pages/auth.form',
|
|
component: auth_form,
|
|
} satisfies Meta<typeof auth_form>;
|
|
export const Default = {
|
|
render(args, { argTypes }) {
|
|
return {
|
|
components: {
|
|
auth_form,
|
|
},
|
|
props: Object.keys(argTypes),
|
|
template: '<auth_form v-bind="$props" />',
|
|
};
|
|
},
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
},
|
|
} satisfies StoryObj<typeof auth_form>;
|
|
export default meta;
|