# PinnedRowsConfig

> _Since v1.8.2_

Pinned-rows config widened to accept React components as panel
`render` functions inside `slots[]` and `customPanels[]`.

Extends the core `PinnedRowsConfig` to accept React render functions
returning `ReactNode` instead of only `HTMLElement | null`. Bridging to
vanilla DOM is handled by the side-effect import
`@toolbox-web/grid-react/features/pinned-rows`.

```ts
type PinnedRowsConfig = Omit<CorePinnedRowsConfig, "slots" | "customPanels"> & object
```
