16 lines
490 B
JavaScript
16 lines
490 B
JavaScript
import { Card, Text, Stack } from "@mantine/core";
|
|
|
|
export default function NodeHealthCard({ node }) {
|
|
const health = node.health || {};
|
|
|
|
return (
|
|
<Card shadow="xs" radius="md" withBorder>
|
|
<Text fw={600} mb="sm">健康信息</Text>
|
|
<Stack spacing="xs">
|
|
<Text size="sm">日志: <Text span c="dimmed">{health.log || "无"}</Text></Text>
|
|
<Text size="sm">指标: <Text span c="dimmed">{health.metric || "无"}</Text></Text>
|
|
</Stack>
|
|
</Card>
|
|
);
|
|
}
|