Files
vault/ui/lib/core/stories/info-table.md
Alexander Scheel ee1e5bec5b Update repository links to point to main (#14112)
* 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>
2022-02-17 14:30:56 -05:00

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