Sharkey/packages/frontend/src/components/MkKeyValue.stories.ts
2023-03-20 14:56:34 +09:00

16 lines
317 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import MkKeyValue from './MkKeyValue.vue';
const meta = {
title: 'components/MkKeyValue',
component: MkKeyValue,
};
export const Default = {
components: {
MkKeyValue,
},
template: '<MkKeyValue />',
parameters: {
layout: 'centered',
},
};
export default meta;