19 lines
556 B
JavaScript
19 lines
556 B
JavaScript
import AnimationTextHead from '@/app/component/AnimationTextHead'
|
|
import Comment from '@/app/component/comment'
|
|
import Underline from '@/components/icons/Underline'
|
|
import React from 'react'
|
|
import AddComment from './AddComment'
|
|
|
|
function CommentUser({ data }) {
|
|
return (
|
|
<div className='mt-[24px]'>
|
|
<AnimationTextHead name='zoom-in-up' text='نظرات'>
|
|
<Underline />
|
|
</AnimationTextHead>
|
|
<AddComment />
|
|
<Comment data={data} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default CommentUser |