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,
},
2023-03-19 15:31:18 +02:00
template: '<theme_editor />',
2023-03-19 15:22:14 +02:00
};
export default meta;