import {Table, TableBody, TableCell, TableColumn, TableHeader, TableRow} from "@heroui/react"; function generateRows(count) { return Array.from({length: count}, (_, index) => ({ key: index.toString(), name: `Item ${index + 1}`, value: `Value ${index + 1}`, })); } export default function App() { const rows = generateRows(500); const columns = [ {key: "name", label: "Name"}, {key: "value", label: "Value"}, ]; return (