1
0
mirror of https://git.boykissers.com/pawkey/pawkey-sk.git synced 2025-12-20 04:04:16 +00:00
Files
pawkey-sk/packages/frontend/src/components/MkNotificationSettingWindow.stories.ts
2023-03-20 16:13:07 +09:00

22 lines
526 B
TypeScript

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