mizzkey/packages/frontend/src/pages/follow.stories.ts

14 lines
247 B
TypeScript
Raw Normal View History

2023-03-19 14:22:14 +01:00
import { Meta, Story } from '@storybook/vue3';
import follow from './follow.vue';
const meta = {
title: 'pages/follow',
component: follow,
};
export const Default = {
components: {
follow,
},
template: '<follow />',
};
export default meta;