@kbfront/kb-ui
Version:
KB React UI Library
11 lines (10 loc) • 359 B
TypeScript
import React, { ReactNode, ReactNodeArray } from 'react';
interface IProps {
children: ReactNode | ReactNodeArray;
fixed?: boolean;
height?: string;
className?: string;
onScroll?(param: any): void;
}
declare const TableBody: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLTableSectionElement>>;
export default TableBody;