export type TabId = "discover" | "feeds" | "search" | "player" | "settings" export type TabDefinition = { id: TabId label: string } export const tabs: TabDefinition[] = [ { id: "discover", label: "Discover" }, { id: "feeds", label: "My Feeds" }, { id: "search", label: "Search" }, { id: "player", label: "Player" }, { id: "settings", label: "Settings" }, ] type TabProps = { tab: TabDefinition active: boolean onSelect: (tab: TabId) => void } export function Tab(props: TabProps) { return ( props.onSelect(props.tab.id)} style={{ padding: 1, backgroundColor: props.active ? "var(--color-primary)" : "transparent" }} > {props.active ? "[" : " "} {props.tab.label} {props.active ? "]" : " "} ) }