Files
misskey/packages/frontend/src/components/MkFoldableSection.stories.ts
2023-03-20 14:56:34 +09:00

17 lines
359 B
TypeScript

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 />',
parameters: {
layout: 'centered',
},
};
export default meta;