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.
25 lines
786 B
25 lines
786 B
import React from 'react'; |
|
import { ComponentStory, ComponentMeta } from '@storybook/react'; |
|
import ChatSystemMessage from '../components/chat/ChatSystemMessage'; |
|
import Mock from './assets/mocks/chatmessage-system.png'; |
|
|
|
export default { |
|
title: 'owncast/Chat/Messages/System', |
|
component: ChatSystemMessage, |
|
parameters: { |
|
design: { |
|
type: 'image', |
|
url: Mock, |
|
}, |
|
docs: { |
|
description: { |
|
component: `This is the message design used when the server sends a message to chat.`, |
|
}, |
|
}, |
|
}, |
|
} as ComponentMeta<typeof ChatSystemMessage>; |
|
|
|
const Template: ComponentStory<typeof ChatSystemMessage> = args => <ChatSystemMessage {...args} />; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
export const Basic = Template.bind({});
|
|
|