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

11 lines
340 B
TypeScript
Raw Normal View History

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,
} 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;