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.
15 lines
574 B
15 lines
574 B
import React from 'react'; |
|
import { ComponentStory, ComponentMeta } from '@storybook/react'; |
|
import ChatSystemMessage from '../components/chat/ChatSystemMessage'; |
|
|
|
export default { |
|
title: 'owncast/Chat/Messages/System', |
|
component: ChatSystemMessage, |
|
parameters: {}, |
|
} as ComponentMeta<typeof ChatSystemMessage>; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
const Template: ComponentStory<typeof ChatSystemMessage> = args => <ChatSystemMessage />; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
export const Basic = Template.bind({});
|
|
|