paricafe/packages/frontend/src/widgets/WidgetPhotos.stories.ts

14 lines
285 B
TypeScript
Raw Normal View History

2023-03-19 08:22:14 -05:00
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;