summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkAnalogClock.stories.ts
blob: 2d034c2ac7768749b50880323af0d5fb268e7622 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { Meta } from '@storybook/vue3';
const meta = {
	title: 'components/MkAnalogClock',
	component: MkAnalogClock,
} satisfies Meta<typeof MkAnalogClock>;
export default meta;
import MkAnalogClock from './MkAnalogClock.vue';
export const Default = {
	render(args, { argTypes }) {
		return {
			components: {
				MkAnalogClock,
			},
			props: Object.keys(argTypes),
			template: '<MkAnalogClock v-bind="$props" />',
		};
	},
	parameters: {
		layout: 'fullscreen',
	},
};