We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c9c307 commit 03ca8d3Copy full SHA for 03ca8d3
react.js
@@ -2512,3 +2512,16 @@ function App() {
2512
</Suspense>
2513
)
2514
}
2515
+
2516
2517
2518
+// HANDLE LARGE DATA SETS
2519
2520
+// with pagination (annoying nav buttons)
2521
+// -> x elements per page rendered and navigation to previous and next pages
2522
2523
+// or with infinite scroll (better ui but user can feel lost and cannot share a certain 'page')
2524
+// -> x elements added to the rendered list once scrolled to bottom
2525
2526
+// or with windowing (height and positionning constraints and bad HTML semantics)
2527
+// -> x elements are rendered from the whole list once scrolled; the rest is unrendered
0 commit comments