# Tables - Simple

{% hint style="info" %}
Simple Tables are only available as an inline component.&#x20;
{% endhint %}

## Screenshot

<div align="left"><img src="https://4062709520-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-La71Iy76rotlqbCOWoQ%2F-M7mIie1lXCDpeQu4-ZR%2F-M7mKTdbdWua9iITlrjo%2Fsimple-inline-table.png?alt=media&#x26;token=2ac55c7b-3855-4e99-b904-8779cd402d96" alt=""></div>

## JSON

No Extension Helper method provided but it's simple to pass back the configuration to Leopard. You will need to define an **`extensions`** output parameter with the following JSON structure.

If you want to omit the headers then remove the property.

```javascript
{
    "name": "displaySimpleTable",
    "inline": true,
    "dense": true,
    "height": null,
    "fixedHeader": false,
    "headers": ["Account", "Balance"],
    "rows": [["<b>Current</b>", "$1271.21"], ["Private", "$137.54"]]
}
```
