open-consul/ui-v2/app/components/consul/metadata/list
John Cowen 34b9ea94d1
ui: Move to a nested folder structure for Consul prefixed components (#8937)
* ui: Move all consul-* components to nested consul/* components

* Move tomography-graph

* Remove old basic rendering tests
2020-10-14 09:03:39 +01:00
..
README.mdx ui: Move to a nested folder structure for Consul prefixed components (#8937) 2020-10-14 09:03:39 +01:00
index.hbs ui: Move to a nested folder structure for Consul prefixed components (#8937) 2020-10-14 09:03:39 +01:00
index.js ui: Move to a nested folder structure for Consul prefixed components (#8937) 2020-10-14 09:03:39 +01:00

README.mdx

## ConsulMetadataList

`<ConsulMetadataList @items={{meta}} />`

A presentational component for presenting Consul Metadata

### Arguments

| Argument/Attribute | Type | Default | Description |
| --- | --- | --- | --- |
| `items` | `array` |  | An array of entries or `[key, value]` pairs as returned by `Object.entries()` |

### Example

The following example shows how to construct the required structure from the
Consul API using a `object-entries` helper.

```handlebars
  <ConsulMetadataList @items={{object-entries item.Meta}} />
```

### See

- [Component Source Code](./index.js)
- [Template Source Code](./index.hbs)

---