import dayjs from 'dayjs' export interface MessageProps { text: string timestamp: number user: string walletPk: string } const Messages = ({ messages }: { messages: MessageProps[] }) => { return (
{user}{' '} {dayjs(timestamp).format('h:mma')}
{text}