mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-12-04 03:37:27 +00:00
13 lines
265 B
TypeScript
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;
|