# RenderPhase

> _Since v0.4.0_

Render phases in order of execution.
Higher phases include all lower phase work.

```ts
type RenderPhase = typeof RenderPhase[keyof typeof RenderPhase]
```

## Runtime Values

Use `RenderPhase` to reference these values from runtime code:

```ts
const RenderPhase = {
  STYLE: 1,
  VIRTUALIZATION: 2,
  HEADER: 3,
  ROWS: 4,
  COLUMNS: 5,
  FULL: 6,
} as const;
```

| Key | Value |
| --- | ----- |
| `STYLE` | `1` |
| `VIRTUALIZATION` | `2` |
| `HEADER` | `3` |
| `ROWS` | `4` |
| `COLUMNS` | `5` |
| `FULL` | `6` |
