mirror of
https://github.com/owncast/owncast.git
synced 2024-11-28 19:19:06 +03:00
18 lines
644 B
TypeScript
18 lines
644 B
TypeScript
|
import React from 'react';
|
||
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
||
|
import ChatModeratorNotification from '../components/chat/ChatModeratorNotification';
|
||
|
|
||
|
export default {
|
||
|
title: 'owncast/Chat/Messages/Moderator notification',
|
||
|
component: ChatModeratorNotification,
|
||
|
parameters: {},
|
||
|
} as ComponentMeta<typeof ChatModeratorNotification>;
|
||
|
|
||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||
|
const Template: ComponentStory<typeof ChatModeratorNotification> = args => (
|
||
|
<ChatModeratorNotification />
|
||
|
);
|
||
|
|
||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||
|
export const Basic = Template.bind({});
|