VirtualInnerComponent: React.ComponentType<VirtualInnerProps>

Type of inner container in a virtual scrolling component

Can be passed to VirtualList or VirtualGrid to replace default implementation. Component must render a div and forward VirtualInnerProps and any ref to it.

const Inner = React.forwardRef<HTMLDivElement, VirtualInnerProps >(({...rest}, ref) => (
<div ref={ref} {...rest} />
)