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.
26 lines
863 B
26 lines
863 B
import React from 'react'; |
|
import { ComponentStory, ComponentMeta } from '@storybook/react'; |
|
import ChatActionMessage from '../components/chat/ChatActionMessage'; |
|
import Mock from './assets/mocks/chatmessage-action.png'; |
|
|
|
export default { |
|
title: 'owncast/Chat/Messages/Chat action', |
|
component: ChatActionMessage, |
|
parameters: { |
|
design: { |
|
type: 'image', |
|
url: Mock, |
|
}, |
|
docs: { |
|
description: { |
|
component: `This is the message design an action takes place, such as a join or a name change.`, |
|
}, |
|
}, |
|
}, |
|
} as ComponentMeta<typeof ChatActionMessage>; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
const Template: ComponentStory<typeof ChatActionMessage> = args => <ChatActionMessage {...args} />; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
export const Basic = Template.bind({});
|
|
|