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

14 lines
294 B
TypeScript
Raw Normal View History

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