mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-03 09:06:17 +02:00
22 lines
478 B
TypeScript
22 lines
478 B
TypeScript
import { Meta, StoryObj } from '@storybook/vue3';
|
|
import channel_ from './channel.vue';
|
|
const meta = {
|
|
title: 'pages/channel',
|
|
component: channel_,
|
|
} satisfies Meta<typeof channel_>;
|
|
export const Default = {
|
|
render(args, { argTypes }) {
|
|
return {
|
|
components: {
|
|
channel_,
|
|
},
|
|
props: Object.keys(argTypes),
|
|
template: '<channel_ v-bind="$props" />',
|
|
};
|
|
},
|
|
parameters: {
|
|
layout: 'fullscreen',
|
|
},
|
|
} satisfies StoryObj<typeof channel_>;
|
|
export default meta;
|