forked from mirrors/misskey
14 lines
319 B
TypeScript
14 lines
319 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import welcome_entrance_c from './welcome.entrance.c.vue';
|
|
const meta = {
|
|
title: 'pages/welcome.entrance.c',
|
|
component: welcome_entrance_c,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
welcome_entrance_c,
|
|
},
|
|
template: '<welcome_entrance_c />',
|
|
};
|
|
export default meta;
|