mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-05 19:26:02 +02:00
14 lines
325 B
TypeScript
14 lines
325 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import overview_retention from './overview.retention.vue';
|
|
const meta = {
|
|
title: 'pages/admin/overview.retention',
|
|
component: overview_retention,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
overview_retention,
|
|
},
|
|
template: '<overview_retention />',
|
|
};
|
|
export default meta;
|