import { Stack } from '@mantine/core' import FeedComment from './FeedComment' import type { Comment } from '../app/types/common' function CommentsFeed({ comments }: { comments: Comment[] }) { return ( {Object.values(comments).map(comment => )} ) } export default CommentsFeed