mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 01:32:33 +00:00
* Update repository links to point to main Signed-off-by: Alexander Scheel <alex.scheel@hashicorp.com> * Fix broken link in relatedtools.mdx Co-authored-by: Steven Clark <steven.clark@hashicorp.com> Co-authored-by: Steven Clark <steven.clark@hashicorp.com>
1.1 KiB
1.1 KiB
InfoTable
InfoTable components are a table with a single column and header. They are used to render a list of InfoTableRow components.
Params
| Param | Type | Default | Description |
|---|---|---|---|
| [title] | String |
Info Table |
The title of the table. Used for accessibility purposes. |
| header | String |
|
The column header. |
| items | Array |
|
An array of strings which will be used as the InfoTableRow value. |
Example
<InfoTable
@title="Known Primary Cluster Addrs"
@header="cluster_addr"
@items={{knownPrimaryClusterAddrs}}
/>
See