Merge Issue #472: dance choreography - behavioral sequences

This commit is contained in:
sl-jetson 2026-03-05 14:22:06 -05:00
commit e26301c7ca

View File

@ -88,6 +88,9 @@ import { HandTracker } from './components/HandTracker.jsx';
// Salty Face animated expression UI (issue #370)
import { SaltyFace } from './components/SaltyFace.jsx';
// Parameter server (issue #471)
import { ParameterServer } from './components/ParameterServer.jsx';
const TAB_GROUPS = [
{
label: 'DISPLAY',
@ -160,8 +163,9 @@ const TAB_GROUPS = [
label: 'CONFIG',
color: 'text-purple-600',
tabs: [
{ id: 'network', label: 'Network' },
{ id: 'settings', label: 'Settings' },
{ id: 'parameters', label: 'Parameters' },
{ id: 'network', label: 'Network' },
{ id: 'settings', label: 'Settings' },
],
},
];
@ -322,6 +326,8 @@ export default function App() {
{activeTab === 'logs' && <LogViewer subscribe={subscribe} />}
{activeTab === 'parameters' && <ParameterServer subscribe={subscribe} callService={callService} />}
{activeTab === 'network' && <NetworkPanel subscribe={subscribe} connected={connected} wsUrl={wsUrl} />}
{activeTab === 'settings' && <SettingsPanel subscribe={subscribe} callService={callService} connected={connected} wsUrl={wsUrl} />}