import { useParams } from "react-router-dom"; import { Device, DeviceApi } from "../api/DeviceApi"; import React from "react"; import { AsyncWidget } from "../widgets/AsyncWidget"; import { SolarEnergyRouteContainer } from "../widgets/SolarEnergyRouteContainer"; import { Card, Paper, Table, TableBody, TableCell, TableContainer, TableRow, Typography, } from "@mui/material"; export function DeviceRoute(): React.ReactElement { const { id } = useParams(); const [device, setDevice] = React.useState(); const loadKey = React.useRef(1); const load = async () => { setDevice(await DeviceApi.GetSingle(id!)); }; const reload = () => { loadKey.current += 1; setDevice(undefined); }; return ( } /> ); } function DeviceRouteInner(p: { device: Device; onReload: () => void; }): React.ReactElement { return ( ); } function GeneralDeviceInfo(p: { device: Device }): React.ReactElement { return ( General device information
); } function DeviceInfoProperty(p: { icon?: React.ReactElement; label: string; value: string; }): React.ReactElement { return ( {p.label} {p.value} ); }