misskey-awawa/packages/frontend/src/pages/scratchpad.stories.ts

22 lines
421 B
TypeScript
Raw Normal View History

2023-03-19 13:22:14 +00:00
import { Meta, Story } from '@storybook/vue3';
import scratchpad from './scratchpad.vue';
const meta = {
title: 'pages/scratchpad',
component: scratchpad,
};
export const Default = {
render(args, { argTypes }) {
return {
components: {
scratchpad,
},
props: Object.keys(argTypes),
template: '<scratchpad v-bind="$props" />',
};
2023-03-19 13:22:14 +00:00
},
parameters: {
layout: 'fullscreen',
},
2023-03-19 13:22:14 +00:00
};
export default meta;