UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

11 lines (10 loc) 284 B
/** * A wrapper component for children of * VirtualScroll. Computes current height and * update virtual scroll. */ declare const VirtualScrollChild: ({ children, onHeightChange }: { children: any; onHeightChange: any; }) => JSX.Element; export default VirtualScrollChild;