Files
misskey/packages/frontend/src/components/MkNotificationSettingWindow.stories.ts
2023-03-20 23:07:13 +09:00

22 lines
635 B
TypeScript

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