mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-07 19:56:18 -04:00
33 lines
807 B
TypeScript
33 lines
807 B
TypeScript
|
|
export type Tab = 'results' | 'grid' | 'strategy' | 'positions' | 'datasets'
|
||
|
|
|
||
|
|
const TABS: { id: Tab; label: string }[] = [
|
||
|
|
{ id: 'results', label: 'Results' },
|
||
|
|
{ id: 'grid', label: 'Grid' },
|
||
|
|
{ id: 'strategy', label: 'Strategy' },
|
||
|
|
{ id: 'positions', label: 'Positions' },
|
||
|
|
{ id: 'datasets', label: 'Datasets' },
|
||
|
|
]
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
active: Tab
|
||
|
|
onChange: (tab: Tab) => void
|
||
|
|
}
|
||
|
|
|
||
|
|
export function TabBar({ active, onChange }: Props) {
|
||
|
|
return (
|
||
|
|
<div className="tab-bar" role="tablist">
|
||
|
|
{TABS.map((t) => (
|
||
|
|
<button
|
||
|
|
key={t.id}
|
||
|
|
role="tab"
|
||
|
|
aria-selected={active === t.id}
|
||
|
|
className={`tab-btn${active === t.id ? ' active' : ''}`}
|
||
|
|
onClick={() => onChange(t.id)}
|
||
|
|
>
|
||
|
|
{t.label}
|
||
|
|
</button>
|
||
|
|
))}
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|