import { Alert, Button, Card, Space, Typography } from "antd"; import { ReloadOutlined } from "@ant-design/icons"; import { InfoCard, LogCard, StatisticsRow } from "../components/UiShared.jsx"; const { Title, Paragraph, Text } = Typography; export default function RemoteServicePage({ title, description, summaryItems, activeInfo, logs, onReload, reloadBusy, error, subHeader, note, operations, }) { return ( {title} {description} {note ? {note} : null} {subHeader}
} onClick={onReload} loading={reloadBusy}> Reload 配置 } > {operations} {error ? : null}
); }