puyoskey/packages/frontend/src/pages/admin/bot-protection.stories.ts
2023-03-19 22:31:18 +09:00

13 lines
301 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import bot_protection from './bot-protection.vue';
const meta = {
title: 'pages/admin/bot-protection',
component: bot_protection,
};
export const Default = {
components: {
bot_protection,
},
template: '<bot_protection />',
};
export default meta;