monkeeShark/packages/frontend/src/components/MkChart.stories.ts

14 lines
258 B
TypeScript
Raw Normal View History

2023-03-19 13:22:14 +00:00
import { Meta, Story } from '@storybook/vue3';
import MkChart from './MkChart.vue';
const meta = {
title: 'components/MkChart',
component: MkChart,
};
export const Default = {
components: {
MkChart,
},
template: '<MkChart />',
};
export default meta;