mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-01 22:56:43 -06:00
14 lines
285 B
TypeScript
14 lines
285 B
TypeScript
|
import { Meta, Story } from '@storybook/vue3';
|
||
|
import WidgetPhotos from './WidgetPhotos.vue';
|
||
|
const meta = {
|
||
|
title: 'widgets/WidgetPhotos',
|
||
|
component: WidgetPhotos,
|
||
|
};
|
||
|
export const Default = {
|
||
|
components: {
|
||
|
WidgetPhotos,
|
||
|
},
|
||
|
template: '<WidgetPhotos />',
|
||
|
};
|
||
|
export default meta;
|