diff --git a/ui/social-bot/src/App.jsx b/ui/social-bot/src/App.jsx index 650772a..358955a 100644 --- a/ui/social-bot/src/App.jsx +++ b/ui/social-bot/src/App.jsx @@ -22,6 +22,7 @@ import { useRosbridge } from './hooks/useRosbridge.js'; // Social panels import { StatusPanel } from './components/StatusPanel.jsx'; +import { StatusHeader } from './components/StatusHeader.jsx'; import { FaceGallery } from './components/FaceGallery.jsx'; import { ConversationLog } from './components/ConversationLog.jsx'; import { ConversationHistory } from './components/ConversationHistory.jsx'; @@ -34,6 +35,7 @@ import PoseViewer from './components/PoseViewer.jsx'; import { BatteryPanel } from './components/BatteryPanel.jsx'; import { BatteryChart } from './components/BatteryChart.jsx'; import { MotorPanel } from './components/MotorPanel.jsx'; +import { MotorCurrentGraph } from './components/MotorCurrentGraph.jsx'; import { MapViewer } from './components/MapViewer.jsx'; import { ControlMode } from './components/ControlMode.jsx'; import { SystemHealth } from './components/SystemHealth.jsx'; @@ -53,6 +55,9 @@ import { CameraViewer } from './components/CameraViewer.jsx'; // Event log (issue #192) import { EventLog } from './components/EventLog.jsx'; +// Log viewer (issue #275) +import { LogViewer } from './components/LogViewer.jsx'; + // Joystick teleop (issue #212) import JoystickTeleop from './components/JoystickTeleop.jsx';