monkeeShark/packages/frontend/src/components/MkMiniChart.stories.ts
Acid Chicken (硫酸鶏) 1dfcca7b9c
build(#10336): init
2023-03-19 22:25:06 +09:00

13 lines
282 B
TypeScript

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 />',
};
export default meta;