summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkEmojiPickerWindow.stories.ts
blob: 470bacaf2c2da73df0039e9d49abaaa194749415 (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 MkEmojiPickerWindow from './MkEmojiPickerWindow.vue';
const meta = {
	title: 'components/MkEmojiPickerWindow',
	component: MkEmojiPickerWindow,
};
export const Default = {
	render(args, { argTypes }) {
		return {
			components: {
				MkEmojiPickerWindow,
			},
			props: Object.keys(argTypes),
			template: '<MkEmojiPickerWindow v-bind="$props" />',
		};
	},
	parameters: {
		layout: 'centered',
	},
};
export default meta;