mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-13 21:05:54 +02:00
14 lines
319 B
TypeScript
14 lines
319 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import queue_chart_chart from './queue.chart.chart.vue';
|
|
const meta = {
|
|
title: 'pages/admin/queue.chart.chart',
|
|
component: queue_chart_chart,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
queue_chart_chart,
|
|
},
|
|
template: '<queue_chart_chart />',
|
|
};
|
|
export default meta;
|