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

17 lines
323 B
TypeScript
Raw Normal View History

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