import React from 'react' export const dynamic = 'force-dynamic' const ROWS = 2500 const PAYLOAD = 'x'.repeat(384) const DATA = Array.from( { length: ROWS }, (_, index) => `row-${index}-${PAYLOAD}` ) export default function Page() { return (

stream-bulk

{DATA.map((line, index) => (

{line}

))}
) }