Pilates
    Preparing search index...
    • <Tabs> — horizontal tab strip. Controlled via activeKey. 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:

      <Tabs items={items} activeKey={k} onChange={setK} />
      {k === 'overview' && <OverviewPanel />}
      {k === 'logs'     && <LogsPanel />}
      

      Parameters

      Returns Element