123 / src /components /EmptyState.tsx
Twan07's picture
Create src/components/EmptyState.tsx
c8cf86c verified
raw
history blame contribute delete
144 Bytes
export default function EmptyState({ text }: { text: string }) {
return <div className="text-center text-zinc-400 py-10">📭 {text}</div>;
}