check responsive & page dashboard user account & turns & transactions & comments

This commit is contained in:
Ehsan
2024-09-03 03:04:55 +03:30
parent bb154ac63f
commit 13cc7796c3
55 changed files with 1887 additions and 92 deletions
@@ -0,0 +1,16 @@
import Comment from "./Comment"
function Comments({ user }) {
return (
<ul className="flex flex-col items-start justify-start">
{user.comments.map((item, idx) => (
<Comment
key={idx}
data={item}
/>
))}
</ul>
)
}
export default Comments