import * as React from "react"; export interface TabListItem { page: string; } export interface TabListProps { tabs: TabListItem[]; active: number; tabClicked: (TabListItem, number) => void; } function TabItem({ name, active, onClick }) { const clickHandler = active ? null : onClick; return (