mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-23 02:53:58 +02:00
17 lines
342 B
TypeScript
17 lines
342 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import MkCustomEmoji from './MkCustomEmoji.vue';
|
|
const meta = {
|
|
title: 'components/global/MkCustomEmoji',
|
|
component: MkCustomEmoji,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
MkCustomEmoji,
|
|
},
|
|
template: '<MkCustomEmoji />',
|
|
parameters: {
|
|
layout: 'centered',
|
|
},
|
|
};
|
|
export default meta;
|