# Tree

## Definition

```tsx
export enum Tree {
    Left = 'left',
    Right = 'right'
}
```

## Usage

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