forked from mirror/misskey
14 lines
270 B
TypeScript
14 lines
270 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import MkCaptcha from './MkCaptcha.vue';
|
|
const meta = {
|
|
title: 'components/MkCaptcha',
|
|
component: MkCaptcha,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
MkCaptcha,
|
|
},
|
|
template: '<MkCaptcha />',
|
|
};
|
|
export default meta;
|