forked from mirrors/misskey
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import WidgetAichan from './WidgetAichan.vue';
|
|
const meta = {
|
|
title: 'widgets/WidgetAichan',
|
|
component: WidgetAichan,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
WidgetAichan,
|
|
},
|
|
template: '<WidgetAichan />',
|
|
};
|
|
export default meta;
|