{/* Load more button */}
{hasMore && (
)}
{/* Messages grouped by date */}
{groupedMessages.map((group) => (
{group.messages.map((message) => (
))}
))}
{/* Loading indicator */}
{isLoading && !hasMore && (
)}
{/* Back to latest button */}
{isViewingHistory && !isAtBottom && (
)}