Sharkey/packages/frontend/src/components/MkFoldableSection.stories.ts

14 lines
318 B
TypeScript
Raw Normal View History

2023-03-19 22:22:14 +09:00
import { Meta, Story } from '@storybook/vue3';
import MkFoldableSection from './MkFoldableSection.vue';
const meta = {
title: 'components/MkFoldableSection',
component: MkFoldableSection,
};
export const Default = {
components: {
MkFoldableSection,
},
template: '<MkFoldableSection />',
};
export default meta;