react-autoheight-swipeable-views
Version:
Swipeable views for swipeable tabs
10 lines (9 loc) • 385 B
TypeScript
import React from 'react';
interface IAutoheightSwipeableViewsProps {
activeIndex: number;
children: React.ReactNode;
onChangeIndex: (index: number) => void;
lazyLoading?: boolean;
}
declare const AutoheightSwipeableViews: ({ activeIndex, children, onChangeIndex, lazyLoading, }: IAutoheightSwipeableViewsProps) => JSX.Element;
export default AutoheightSwipeableViews;