mistykey/packages/frontend/src/pages/admin/bot-protection.stories.ts
Acid Chicken (硫酸鶏) 1d0ca7eecf
chore: suppress linter
2023-03-22 00:25:17 +09:00

23 lines
650 B
TypeScript

/* eslint-disable @typescript-eslint/explicit-function-return-type */
/* eslint-disable import/no-default-export */
import { Meta, StoryObj } from '@storybook/vue3';
import bot_protection from './bot-protection.vue';
const meta = {
title: 'pages/admin/bot-protection',
component: bot_protection,
} satisfies Meta<typeof bot_protection>;
export const Default = {
render(args, { argTypes }) {
return {
components: {
bot_protection,
},
props: Object.keys(argTypes),
template: '<bot_protection v-bind="$props" />',
};
},
parameters: {
layout: 'fullscreen',
},
} satisfies StoryObj<typeof bot_protection>;
export default meta;