# PanelRender

> _Since v2.6.0_

Render function for a panel slot.
Return `null` to skip rendering (used by the built-in count panels for
conditional display, e.g. only show "Selected: N" when N &gt; 0).

```ts
type PanelRender = (context: PinnedRowsContext) => HTMLElement | null
```
