mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-05 13:16:59 +00:00
13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import overview_active_users from './overview.active-users.vue';
|
|
const meta = {
|
|
title: 'pages/admin/overview.active-users',
|
|
component: overview_active_users,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
overview_active_users,
|
|
},
|
|
template: '<overview_active_users />',
|
|
};
|
|
export default meta;
|