TypeScriptでreact-windowのFixedSizeListを使用したいと考えています。
次のサンプルコードをTypeScriptで記述する方法をご教示いただけますと幸いです。
JavaScript
1import { FixedSizeList as List } from 'react-window'; 2 3const Row = ({ index, style }) => ( 4 <div style={style}>Row {index}</div> 5); 6 7const Example = () => ( 8 <List 9 height={150} 10 itemCount={1000} 11 itemSize={35} 12 width={300} 13 > 14 {Row} 15 </List> 16);
あなたの回答
tips
プレビュー