You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
696 B
17 lines
696 B
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: object) => ( |
|
<ChatModeratorNotification {...args} /> |
|
); |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
export const Basic = Template.bind({});
|
|
|