mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-20 21:34:46 +00:00
13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import MkDialog from './MkDialog.vue';
|
|
const meta = {
|
|
title: 'components/MkDialog',
|
|
component: MkDialog,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
MkDialog,
|
|
},
|
|
template: '<MkDialog />',
|
|
};
|
|
export default meta;
|