17 lines
521 B
TypeScript
17 lines
521 B
TypeScript
import { FileExclamationPoint } from 'lucide-react';
|
|
import { Empty, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle } from '../../ui/empty';
|
|
|
|
export function EventGridError() {
|
|
return (
|
|
<Empty className="h-full">
|
|
<EmptyHeader>
|
|
<EmptyMedia variant="icon">
|
|
<FileExclamationPoint />
|
|
</EmptyMedia>
|
|
<EmptyTitle>活动列表加载失败</EmptyTitle>
|
|
<EmptyDescription>前面的区域 以后再来探索吧</EmptyDescription>
|
|
</EmptyHeader>
|
|
</Empty>
|
|
);
|
|
}
|