import { FixedSizeList as List } from 'react-window';const Row = ({ index, style }) => (
Row {index}
);const Example = () => ( {Row} );