Render prop for outer container in a virtual scrolling component
Can be passed to VirtualList or VirtualGrid to replace default implementation. Function must render a div and forward VirtualOuterProps and any ref to it.
ref
const outerRender: VirtualOuterRender = ({style, ...rest}, ref) => ( <div ref={ref} {...rest} />) Copy
const outerRender: VirtualOuterRender = ({style, ...rest}, ref) => ( <div ref={ref} {...rest} />)
Render prop for outer container in a virtual scrolling component
Can be passed to VirtualList or VirtualGrid to replace default implementation. Function must render a div and forward VirtualOuterProps and any
ref
to it.