mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-13 10:21:27 +08:00
17 lines
354 B
TypeScript
17 lines
354 B
TypeScript
import { Typography } from 'antd';
|
|
import { Empty } from 'antd/lib';
|
|
|
|
export default function EmptyMetricsSearch(): JSX.Element {
|
|
return (
|
|
<div className="empty-metrics-search">
|
|
<Empty
|
|
description={
|
|
<Typography.Title level={5}>
|
|
Please build and run a valid query to see the result
|
|
</Typography.Title>
|
|
}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|