This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState } from "react"; | |
const TOTAL = 10000; // number of items | |
const ITEM_HEIGHT = 30; // fixed height of each item | |
const VIEWPORT_HEIGHT = 300; // height of the visible container | |
const BUFFER = 5; // extra safety buffer (before/after) | |
export default function VirtualizedList() { | |
const [scrollTop, setScrollTop] = useState(0); |