mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 13:50:06 +03:00
17 lines
696 B
TypeScript
17 lines
696 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: object) => (
|
|
<ChatModeratorNotification {...args} />
|
|
);
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export const Basic = Template.bind({});
|