Sharkey/packages/frontend/src/pages/theme-editor.stories.ts

14 lines
283 B
TypeScript
Raw Normal View History

2023-03-19 15:22:14 +02:00
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;