mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-10 23:56:57 +00:00
16 lines
341 B
TypeScript
16 lines
341 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import MkDigitalClock from './MkDigitalClock.vue';
|
|
const meta = {
|
|
title: 'components/MkDigitalClock',
|
|
component: MkDigitalClock,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
MkDigitalClock,
|
|
},
|
|
template: '<MkDigitalClock />',
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
};
|
|
export default meta;
|