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

22 lines
512 B
TypeScript
Raw Normal View History

import { Meta, StoryObj } from '@storybook/vue3';
2023-03-19 15:22:14 +02:00
import theme_editor from './theme-editor.vue';
const meta = {
title: 'pages/theme-editor',
component: theme_editor,
} satisfies Meta<typeof theme_editor>;
2023-03-19 15:22:14 +02:00
export const Default = {
render(args, { argTypes }) {
return {
components: {
theme_editor,
},
props: Object.keys(argTypes),
template: '<theme_editor v-bind="$props" />',
};
2023-03-19 15:22:14 +02:00
},
parameters: {
layout: 'fullscreen',
},
} satisfies StoryObj<typeof theme_editor>;
2023-03-19 15:22:14 +02:00
export default meta;