Я пытаюсь реализовать реагирующее окно , но я не уверен, как передать компонент, который принимает его собственные свойства
Если у меня есть что-то подобное
{
items.map(
(item, index) => {
<MyComponent
key={key}
item={item}
/>;
}
);
}
как составить список переменных?
В примере не показано, как это сделать
import { VariableSizeList as List } from 'react-window';
// These row heights are arbitrary.
// Yours should be based on the content of the row.
const rowHeights = new Array(1000)
.fill(true)
.map(() => 25 + Math.round(Math.random() * 50));
const getItemSize = index => rowHeights[index];
const Row = ({ index, style }) => (
<div style={style}>Row {index}</div>
);
const Example = () => (
<List
height={150}
itemCount={1000}
itemSize={getItemSize}
width={300}
>
{Row}
</List>
);