1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 20:15:55 +02:00
Files
misskey/packages/frontend/src/pages/auth.stories.ts
2023-03-20 23:07:13 +09:00

22 lines
448 B
TypeScript

import { Meta, StoryObj } from '@storybook/vue3';
import auth from './auth.vue';
const meta = {
title: 'pages/auth',
component: auth,
} satisfies Meta<typeof auth>;
export const Default = {
render(args, { argTypes }) {
return {
components: {
auth,
},
props: Object.keys(argTypes),
template: '<auth v-bind="$props" />',
};
},
parameters: {
layout: 'fullscreen',
},
} satisfies StoryObj<typeof auth>;
export default meta;