website/app/routes/blog._index/EmptyState.tsx
2024-02-05 19:03:39 +01:00

11 lines
276 B
TypeScript

export function EmptyState() {
return (
<div className="mx-5 flex flex-col items-center">
<div className="font-bold">
I haven't post anything yet! So here's a pic of my cat
</div>
<img src="/cat.jpg" className="rounded-md" />
</div>
);
}