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.
23 lines
615 B
23 lines
615 B
import React from 'react'; |
|
import { ComponentStory, ComponentMeta } from '@storybook/react'; |
|
import { ChatNameChangeMessage } from './ChatNameChangeMessage'; |
|
|
|
export default { |
|
title: 'owncast/Chat/Messages/Chat name change', |
|
component: ChatNameChangeMessage, |
|
} as ComponentMeta<typeof ChatNameChangeMessage>; |
|
|
|
const Template: ComponentStory<typeof ChatNameChangeMessage> = args => ( |
|
<ChatNameChangeMessage {...args} /> |
|
); |
|
|
|
export const Basic = Template.bind({}); |
|
Basic.args = { |
|
message: { |
|
oldName: 'JohnnyOldName', |
|
user: { |
|
displayName: 'JohnnyNewName', |
|
displayColor: '3', |
|
}, |
|
}, |
|
};
|
|
|