mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-07 09:55:46 +00:00
13 lines
324 B
TypeScript
13 lines
324 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import activity_following from './activity.following.vue';
|
|
const meta = {
|
|
title: 'pages/user/activity.following',
|
|
component: activity_following,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
activity_following,
|
|
},
|
|
template: '<activity.following />',
|
|
};
|
|
export default meta;
|