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

16 lines
305 B
TypeScript

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