1
0
Files
pawkey-sk/packages/frontend/src/pages/settings/webhook.edit.stories.ts
T
2023-03-20 23:07:13 +09:00

22 lines
521 B
TypeScript

import { Meta, StoryObj } from '@storybook/vue3';
import webhook_edit from './webhook.edit.vue';
const meta = {
title: 'pages/settings/webhook.edit',
component: webhook_edit,
} satisfies Meta<typeof webhook_edit>;
export const Default = {
render(args, { argTypes }) {
return {
components: {
webhook_edit,
},
props: Object.keys(argTypes),
template: '<webhook_edit v-bind="$props" />',
};
},
parameters: {
layout: 'fullscreen',
},
} satisfies StoryObj<typeof webhook_edit>;
export default meta;