Sharkey/packages/frontend/src/pages/auth.form.stories.ts
Acid Chicken (硫酸鶏) 1dfcca7b9c
build(#10336): init
2023-03-19 22:25:06 +09:00

13 lines
265 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import auth_form from './auth.form.vue';
const meta = {
title: 'pages/auth.form',
component: auth_form,
};
export const Default = {
components: {
auth_form,
},
template: '<auth.form />',
};
export default meta;