mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-28 14:43:09 +02:00
14 lines
283 B
TypeScript
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;
|