@using MudBlazor
@using RobotNet10.FleetManager.Client.Services
Robot Information
@if (State.SelectedRobotId != null && State.Robots.TryGetValue(State.SelectedRobotId, out var robot))
{
}
else
{
No robot selected. Click on a robot on the map to view its information.
}
@code {
[Parameter]
public RobotMonitorState State { get; set; } = null!;
}