mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-21 05:44:48 +00:00
13 lines
312 B
TypeScript
13 lines
312 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import MkSubNoteContent from './MkSubNoteContent.vue';
|
|
const meta = {
|
|
title: 'components/MkSubNoteContent',
|
|
component: MkSubNoteContent,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
MkSubNoteContent,
|
|
},
|
|
template: '<MkSubNoteContent />',
|
|
};
|
|
export default meta;
|