next.js/test/e2e/app-dir/router-autoscroll/app/loading-scroll/loading.tsx
loading.tsx14 lines276 B
export default function Loading() {
  return (
    <>
      <div id="loading-component">Loading component</div>
      {
        // Repeat 500 elements
        Array.from({ length: 500 }, (_, i) => (
          <div key={i}>Loading {i}...</div>
        ))
      }
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN