UNPKG

primereact

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primereact.svg)](https://badge.fury.io/js/primereact) [![Discord Chat](https://img.shields.io/discord/5579

17 lines (15 loc) 413 B
import * as React from 'react'; interface ScrollableViewProps { header?: any; body?: any; footer?: any; frozen?: boolean; frozenWidth?: string; unfrozenWidth?: string; frozenBody?: any; virtualScroll?: boolean; rows?: number; totalRcords?: number; onVirtualScroll?(page: number): void; } export class ScrollableView extends React.Component<ScrollableViewProps,any> {}