mirror of
https://github.com/owncast/owncast.git
synced 2024-11-29 19:49:31 +03:00
23 lines
615 B
TypeScript
23 lines
615 B
TypeScript
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',
|
|
},
|
|
},
|
|
};
|