misskey-awawa/packages/frontend/src/pages/settings/reaction.stories.ts

22 lines
418 B
TypeScript
Raw Normal View History

2023-03-19 13:22:14 +00:00
import { Meta, Story } from '@storybook/vue3';
import reaction from './reaction.vue';
const meta = {
title: 'pages/settings/reaction',
component: reaction,
};
export const Default = {
render(args, { argTypes }) {
return {
components: {
reaction,
},
props: Object.keys(argTypes),
template: '<reaction 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;