mizzkey/packages/frontend/src/components/MkAbuseReportWindow.stories.ts
Acid Chicken (硫酸鶏) 1d0ca7eecf
chore: suppress linter
2023-03-22 00:25:17 +09:00

24 lines
687 B
TypeScript

/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable import/no-default-export */
import { Meta, StoryObj } from '@storybook/vue3';
import MkAbuseReportWindow from './MkAbuseReportWindow.vue';
const meta = {
title: 'components/MkAbuseReportWindow',
component: MkAbuseReportWindow,
} satisfies Meta<typeof MkAbuseReportWindow>;
export const Default = {
render(args, { argTypes }) {
return {
components: {
MkAbuseReportWindow,
},
props: Object.keys(argTypes),
template: '<MkAbuseReportWindow v-bind="$props" />',
};
},
parameters: {
layout: 'centered',
},
} satisfies StoryObj<typeof MkAbuseReportWindow>;
export default meta;