Sharkey/packages/frontend/src/components/form/section.stories.ts
2023-03-20 14:56:34 +09:00

16 lines
304 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import section from './section.vue';
const meta = {
title: 'components/form/section',
component: section,
};
export const Default = {
components: {
section,
},
template: '<section />',
parameters: {
layout: 'centered',
},
};
export default meta;