Sharkey/packages/frontend/src/pages/auth.form.stories.ts

14 lines
265 B
TypeScript
Raw Normal View History

2023-03-19 13:22:14 +00:00
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,
},
2023-03-19 13:31:18 +00:00
template: '<auth_form />',
2023-03-19 13:22:14 +00:00
};
export default meta;