2023-03-22 00:25:17 +09:00
|
|
|
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
|
|
|
|
/* eslint-disable import/no-default-export */
|
2023-03-24 23:22:49 +09:00
|
|
|
import { Meta } from '@storybook/vue3';
|
2023-03-19 22:22:14 +09:00
|
|
|
const meta = {
|
|
|
|
|
title: 'components/MkCaptcha',
|
|
|
|
|
component: MkCaptcha,
|
2023-03-20 23:07:13 +09:00
|
|
|
} satisfies Meta<typeof MkCaptcha>;
|
2023-03-19 22:22:14 +09:00
|
|
|
export default meta;
|
2023-03-24 23:22:49 +09:00
|
|
|
import MkCaptcha from './MkCaptcha.vue';
|
|
|
|
|
void MkCaptcha;
|