We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf55cfb commit d6253a6Copy full SHA for d6253a6
apps/material-react-table-docs/components/prop-tables/tableOptions.ts
@@ -1071,7 +1071,7 @@ export const tableOptions: TableOption[] = [
1071
linkText: 'Memoize Components Guide',
1072
required: false,
1073
source: 'MRT',
1074
- type: `'cell' | 'row' | 'table-body'`,
+ type: `'cells' | 'rows' | 'table-body'`,
1075
},
1076
{
1077
tableOption: 'mergeOptions',
apps/material-react-table-docs/pages/docs/guides/memoization.mdx
@@ -149,7 +149,7 @@ const table = useMaterialReactTable({
149
columns,
150
data,
151
//memoize all cells. This value can be applied dynamically based on a certain scenario/condition if needed
152
- memoMode: 'cell', // 'cell' | 'row' | 'table-body'
+ memoMode: 'cells', // 'cells' | 'rows' | 'table-body'
153
});
154
```
155
0 commit comments