mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-19 16:22:44 +09:00
14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
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 />',
|
|
};
|
|
export default meta;
|