UNPKG

react-tabs-scrollable

Version:

a simple react scrollable tabs with a lot of additional features and with fully supporting of RTL mode

12 lines (11 loc) 282 B
import { default as React } from 'react'; interface TabScreenProps { children: React.ReactNode; activeTab: number; index: number; className?: string; as?: string; style?: object; } declare const TabScreen: React.FC<TabScreenProps>; export default TabScreen;