mirror of
https://github.com/owncast/owncast.git
synced 2025-01-04 15:47:41 +03:00
18 lines
686 B
TypeScript
18 lines
686 B
TypeScript
|
import React from 'react';
|
||
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
||
|
import ChatModeratorNotification from '../components/chat/ChatModeratorNotification/ChatModeratorNotification';
|
||
|
|
||
|
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
|
||
|
const Template: ComponentStory<typeof ChatModeratorNotification> = args => (
|
||
|
<ChatModeratorNotification {...args} />
|
||
|
);
|
||
|
|
||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||
|
export const Basic = Template.bind({});
|