import { CommentData } from "@/data/comments";
import Form from "./Form";
import CommentList from "./CommentList";
export default function Comment() {
return (
{CommentData.list.length} Bình luận
{buildButtonFilter()}
{CommentData.list.length > 0 &&
}
)
}
function buildButtonFilter(){
const star = [5,4,3,2,1]
return star.map(item => (
))
}