monkeeShark/packages/frontend/src/components/MkLink.stories.ts

14 lines
252 B
TypeScript
Raw Normal View History

2023-03-19 13:22:14 +00:00
import { Meta, Story } from '@storybook/vue3';
import MkLink from './MkLink.vue';
const meta = {
title: 'components/MkLink',
component: MkLink,
};
export const Default = {
components: {
MkLink,
},
template: '<MkLink />',
};
export default meta;