We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2c3889 commit 0ea52f3Copy full SHA for 0ea52f3
packages/cells/README.md
@@ -30,9 +30,8 @@ Step 1: Add the extra cells to your grid.
30
import { useExtraCells } from "@glideapps/glide-data-grid-cells";
31
32
const Grid = () => {
33
- const { drawCell, provideEditor } = useExtraCells();
34
-
35
- return <DataEditor {...rest} drawCell={drawCell} provideEditor={provideEditor} />;
+ const { customRenderers } = useExtraCells();
+ return <DataEditor customRenderers={customRenderers} {...rest} />;
36
};
37
```
38
0 commit comments