Sharkey/packages/frontend/src/pages/miauth.stories.ts

17 lines
290 B
TypeScript
Raw Normal View History

2023-03-19 13:22:14 +00:00
import { Meta, Story } from '@storybook/vue3';
import miauth from './miauth.vue';
const meta = {
title: 'pages/miauth',
component: miauth,
};
export const Default = {
components: {
miauth,
},
template: '<miauth />',
parameters: {
layout: 'fullscreen',
},
2023-03-19 13:22:14 +00:00
};
export default meta;