react-recycled-list
Version:
A React library for efficiently rendering large list with expensive component
11 lines (10 loc) • 460 B
TypeScript
import React from 'react';
import { ResponsiveContainerProps } from './ResponsiveContainer';
interface ResponsiveWindowContainerProps extends ResponsiveContainerProps {
/**
* A React ref object that points to the element used to attach scroll listener. defaults to window
*/
scrollRef?: React.MutableRefObject<any>;
}
export default function ResponsiveWindowContainer(props: ResponsiveWindowContainerProps): JSX.Element;
export {};