Refactor comment cards out of comment section

This commit is contained in:
Aaron William Po
2023-04-02 22:10:04 -04:00
parent f8ecaa51b5
commit 801a3c8ad3
4 changed files with 44 additions and 38 deletions

View File

@@ -0,0 +1,13 @@
const NoCommentsCard = () => {
return (
<div className="card bg-base-300">
<div className="card-body h-64">
<div className="flex h-full flex-col items-center justify-center">
<span className="text-lg font-bold">No comments yet.</span>
</div>
</div>
</div>
);
};
export default NoCommentsCard;