Skip to content

Commit 0ea52f3

Browse files
Update glide-data-grid-cells README.md (#769)
1 parent e2c3889 commit 0ea52f3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/cells/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ Step 1: Add the extra cells to your grid.
3030
import { useExtraCells } from "@glideapps/glide-data-grid-cells";
3131

3232
const Grid = () => {
33-
const { drawCell, provideEditor } = useExtraCells();
34-
35-
return <DataEditor {...rest} drawCell={drawCell} provideEditor={provideEditor} />;
33+
const { customRenderers } = useExtraCells();
34+
return <DataEditor customRenderers={customRenderers} {...rest} />;
3635
};
3736
```
3837

0 commit comments

Comments
 (0)