2022-07-15 06:36:47 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
2022-09-07 10:00:28 +03:00
|
|
|
import { ChatModeratorNotification } from './ChatModeratorNotification';
|
2022-07-15 06:36:47 +03:00
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'owncast/Chat/Messages/Moderation Role Notification',
|
|
|
|
component: ChatModeratorNotification,
|
|
|
|
parameters: {},
|
|
|
|
} as ComponentMeta<typeof ChatModeratorNotification>;
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
2022-08-16 04:58:34 +03:00
|
|
|
const Template: ComponentStory<typeof ChatModeratorNotification> = (args: object) => (
|
2022-07-15 06:36:47 +03:00
|
|
|
<ChatModeratorNotification {...args} />
|
|
|
|
);
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
export const Basic = Template.bind({});
|