Files
the-biergarten-app/components/BeerById/NoCommentsCard.tsx
2023-04-02 22:10:04 -04:00

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;