# POJO Viewer
This component renders a Plain Old Javascript Object into an expandable code block.  An example use
case would be displaying telemetry data with properties, nested objects, and arrays.

## Usage
### To display a POJO Viewer
```handlebars
{{pojo-viewer val=item.body}}
```

### To use the light theme
```handlebars
{{pojo-viewer theme='light' val=item.body}}
```

### To display a POJO Viewer as full sized
```handlebars
{{pojo-viewer size='full' val=item.body}}
```
