import { Card, Button } from "flowbite-react"; import { CommentsComment } from "./Comments.Comment"; export const CommentsMain = (props: { release_id: number; token: string | null; comments: any; }) => { return (

Комментарии

Популярные и актуальные

{props.comments.map((comment: any) => ( ))}
); };