1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-01 19:45:51 +02:00
Files
misskey/packages/frontend/src/pages/settings/theme.install.stories.ts
2023-03-20 23:07:13 +09:00

22 lines
529 B
TypeScript

import { Meta, StoryObj } from '@storybook/vue3';
import theme_install from './theme.install.vue';
const meta = {
title: 'pages/settings/theme.install',
component: theme_install,
} satisfies Meta<typeof theme_install>;
export const Default = {
render(args, { argTypes }) {
return {
components: {
theme_install,
},
props: Object.keys(argTypes),
template: '<theme_install v-bind="$props" />',
};
},
parameters: {
layout: 'fullscreen',
},
} satisfies StoryObj<typeof theme_install>;
export default meta;