UNPKG

ar-design

Version:

AR Design is a (react | nextjs) ui library.

10 lines (9 loc) 243 B
import { TabProps } from "../../../libs/types"; interface IProps { name: string; tabs: TabProps[]; activeTab?: number; onChange?: (currentTab: number) => void; onClose?: (closeTab: number) => void; } export default IProps;