mizzkey/packages/frontend/src/pages/flash/flash-index.stories.ts

14 lines
283 B
TypeScript
Raw Normal View History

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