1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 10:46:09 +02:00
Files
misskey/packages/frontend/src/pages/settings/theme.install.stories.ts
Acid Chicken (硫酸鶏) 1dfcca7b9c build(#10336): init
2023-03-19 22:25:06 +09:00

14 lines
298 B
TypeScript

import { Meta, Story } from '@storybook/vue3';
import theme_install from './theme.install.vue';
const meta = {
title: 'pages/settings/theme.install',
component: theme_install,
};
export const Default = {
components: {
theme_install,
},
template: '<theme.install />',
};
export default meta;