diff --git a/examples/grouping-client-side/src/App.js b/examples/grouping-client-side/src/App.js
index cc22778..0a43c89 100644
--- a/examples/grouping-client-side/src/App.js
+++ b/examples/grouping-client-side/src/App.js
@@ -49,9 +49,9 @@ function Table({ columns, data }) {
useExpanded // useGroupBy would be pretty useless without useExpanded ;)
)
- // We don't want to render all 2000 rows for this example, so cap
+ // We don't want to render all of the rows for this example, so cap
// it at 20 for this use case
- const firstPageRows = rows.slice()
+ const firstPageRows = rows.slice(0, 100)
return (
<>
@@ -68,7 +68,7 @@ function Table({ columns, data }) {
{column.canGroupBy ? (
// If the column can be grouped, let's add a toggle
- {column.grouped ? '🛑' : '👊'}
+ {column.grouped ? '🛑 ' : '👊 '}
) : null}
{column.render('Header')}
@@ -109,7 +109,7 @@ function Table({ columns, data }) {
onClick={() => row.toggleExpanded()}
>
{row.isExpanded ? '👇' : '👉'}
-
+ {' '}
{cell.render('Cell')} ({row.subRows.length})
>
) : cell.aggregated ? (
@@ -129,7 +129,7 @@ function Table({ columns, data }) {
-