mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
14 lines
344 B
TypeScript
14 lines
344 B
TypeScript
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;
|