4f078e1ee4
* Migrate web action-buttons directory to CSF3 notation * Migrate web chat directory to CSF3 notation * Migrate web common directory to CSF3 notation * Migrate web layout directory to CSF3 notation * Migrate web modals directory to CSF3 notation * Migrate web ui directory to CSF3 notation * Migrate web video directory to CSF3 notation * Migrate web stories directory to CSF3 notation
22 lines
463 B
TypeScript
22 lines
463 B
TypeScript
import { Meta } from '@storybook/react';
|
|
import { ChatNameChangeMessage } from './ChatNameChangeMessage';
|
|
|
|
const meta = {
|
|
title: 'owncast/Chat/Messages/Chat name change',
|
|
component: ChatNameChangeMessage,
|
|
} satisfies Meta<typeof ChatNameChangeMessage>;
|
|
|
|
export default meta;
|
|
|
|
export const Basic = {
|
|
args: {
|
|
message: {
|
|
oldName: 'JohnnyOldName',
|
|
user: {
|
|
displayName: 'JohnnyNewName',
|
|
displayColor: '3',
|
|
},
|
|
},
|
|
},
|
|
};
|