# GridConfig

> _Since v0.0.1_

Grid configuration for React applications.

Uses React-augmented ColumnConfig that accepts JSX render functions.

```ts
type GridConfig = Omit<BaseGridConfig<TRow>, "columns" | "loadingRenderer" | "emptyRenderer"> & object
```

#### Example

```tsx
import type { GridConfig } from '@toolbox-web/grid-react';

const config: GridConfig<Employee> = {
  columns: [
    { field: 'name', header: 'Name' },
    {
      field: 'status',
      renderer: (ctx) => <StatusBadge value={ctx.value} />,
    },
  ],
};
```
