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