10 lines
240 B
TypeScript
10 lines
240 B
TypeScript
export default function EmptyGrid() {
|
|
return (
|
|
<div>
|
|
<div className="my-8 h-32 w-full flex items-center justify-center">
|
|
<p className="font-medium text-muted-foreground">Nothing found.</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|