<Tabs> — horizontal tab strip. Controlled via activeKey. Arrow keys cycle through enabled tabs; Home / End jump to the first / last enabled.
<Tabs>
activeKey
The widget renders only the strip; it does not manage panel content. Wire the body separately based on activeKey:
<Tabs items={items} activeKey={k} onChange={setK} /> {k === 'overview' && <OverviewPanel />} {k === 'logs' && <LogsPanel />}
<Tabs>— horizontal tab strip. Controlled viaactiveKey. Arrow keys cycle through enabled tabs; Home / End jump to the first / last enabled.The widget renders only the strip; it does not manage panel content. Wire the body separately based on
activeKey: