UNPKG

brightyui

Version:

Brighty UI library

8 lines (7 loc) 160 B
import { FC } from 'react'; interface TabProps { tabs: string[]; onClick: (tab: string) => void; } declare const Tab: FC<TabProps>; export default Tab;