forked from mirror/misskey
16 lines
295 B
TypeScript
16 lines
295 B
TypeScript
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',
|
|
},
|
|
};
|