Sharkey/packages/frontend/src/components/MkCheckbox.stories.ts

17 lines
317 B
TypeScript
Raw Normal View History

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