updated navigator column

This commit is contained in:
Ren Amamiya
2023-03-16 08:18:04 +07:00
parent 58fb8e0a33
commit e5bd58eca8
9 changed files with 132 additions and 73 deletions

View File

@@ -0,0 +1,13 @@
import { UserMini } from '@components/user/mini';
import { Key, memo } from 'react';
export const MessageList = memo(function MessageList({ data }: { data: any }) {
return (
<>
{data.map((item: string, index: Key) => (
<UserMini key={index} pubkey={item} />
))}
</>
);
});