yangjie #22

Merged
yangqiang merged 99 commits from yangjie into master 2024-10-22 16:11:46 +08:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit a99194b067 - Show all commits

View File

@ -36,8 +36,8 @@ const ChatSmallWindow: React.FC = () => {
<> <>
<div className={styles.chatSmallWindow}> <div className={styles.chatSmallWindow}>
<div id='chatSmallWindowView'> <div id='chatSmallWindowView'>
{chatLists.map((item: any) => {chatLists.map((item: any, index: number) =>
<div className={`${styles.chatSmallWindowContentLeft}`}> <div className={`${styles.chatSmallWindowContentLeft}`} key={index}>
<div> <div>
<span>{item.userName}</span> <span>{item.userName}</span>
<span>{item.message}</span> <span>{item.message}</span>