puyoskey/packages/frontend/src/components/MkAbuseReportWindow.stories.ts
2023-03-20 14:56:34 +09:00

16 lines
371 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import MkAbuseReportWindow from './MkAbuseReportWindow.vue';
const meta = {
title: 'components/MkAbuseReportWindow',
component: MkAbuseReportWindow,
};
export const Default = {
components: {
MkAbuseReportWindow,
},
template: '<MkAbuseReportWindow />',
parameters: {
layout: 'centered',
},
};
export default meta;