2022-07-14 20:36:47 -07:00
|
|
|
import React from 'react';
|
|
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
2022-09-07 09:00:28 +02:00
|
|
|
import { ChatModeratorNotification } from './ChatModeratorNotification';
|
2022-07-14 20:36:47 -07: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-15 18:58:34 -07:00
|
|
|
const Template: ComponentStory<typeof ChatModeratorNotification> = (args: object) => (
|
2022-07-14 20:36:47 -07:00
|
|
|
<ChatModeratorNotification {...args} />
|
|
|
|
);
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
export const Basic = Template.bind({});
|