> For the complete documentation index, see [llms.txt](https://help.iviva.com/uxp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.iviva.com/uxp/types/column.md).

# Column

```tsx
interface Column {
    id: string,
    label: string | React.ReactNode;
    renderColumn?: (item: any) => React.ReactNode,
    minWidth?: number,
    maxWidth?: number
}
```

## Usage

```tsx
import {Column} from 'uxp/components';
```
