misskey/packages/frontend/src/pages/theme-editor.stories.ts
2023-03-19 22:31:18 +09:00

14 lines
283 B
TypeScript

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