UNPKG

baseui

Version:

A React Component library implementing the Base design language

15 lines (14 loc) 667 B
import type { StatefulTabsState, StatefulTabsAction, StatefulTabsReducer } from './types'; export * from './constants'; export * from './stateful-tabs'; export * from './styled-components'; export * from './tab'; export * from './tabs'; export * from './utils'; export * from './types'; /** @deprecated use StatefulTabsState instead. To be removed in future versions.*/ export type State = StatefulTabsState; /** @deprecated use StatefulTabsAction instead. To be removed in future versions.*/ export type Action = StatefulTabsAction; /** @deprecated use StatefulTabsReducer instead. To be removed in future versions.*/ export type StateReducer = StatefulTabsReducer;