mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-05 21:26:57 +00:00
13 lines
319 B
TypeScript
13 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;
|