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

14 lines
253 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import channel from './channel.vue';
const meta = {
title: 'pages/channel',
component: channel,
};
export const Default = {
components: {
channel,
},
template: '<channel />',
};
export default meta;