@procraft/widget-order
Version:
Order widget for landing
18 lines (13 loc) • 358 B
text/typescript
// import { CSSProperties } from 'react'
export type TabProps = {
label: string
content: JSX.Element | JSX.Element[] | null
}
export type TabsProps = {
// Текущий индекс
tabIndex: number
// Хендлер на смену индекса
onChangeTabIndex: (tabIndex: number) => void
tabs: TabProps[]
// style?: CSSProperties
}