Rate this page:
A layout container for multiple tags.
1
import ForgeUI, { Tag, TagGroup } from '@forge/ui';
Name | Type | Required | Description |
---|---|---|---|
children | Array<Tag> | Yes | The tag components to be displayed. See Tag for further details on the props. |
A simple group of two tag components.
1 2 3 4
<TagGroup>
<Tag text="tag 1" />
<Tag text="tag 2" />
</TagGroup>
Rate this page: