summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkNotificationSettingWindow.stories.ts
blob: 78dc44c8ad2b96d69c136cbae9e759281aa11567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;