Last updated Jan 20, 2021

This section describes a Forge preview feature. Preview features are deemed stable; however, they remain under active development and may be subject to shorter deprecation windows. Preview features are suitable for early adopters in production environments.

We release preview features so partners and developers can study, test, and integrate them prior to General Availability (GA). For more information, see Forge release phases: EAP, Preview, and GA.

Tag group

To add the TagGroup component to your app:

1
2
import ForgeUI, { Tag, TagGroup } from '@forge/ui';

Description

A layout container for multiple tags.

Props

NameTypeRequiredDescription
childrenArray<Tag>YesThe tag components to be displayed. See Tag for further details on the props.

Example

1
2
<TagGroup>
  <Tag>tag 1</Tag>
  <Tag>tag 2</Tag>
</TagGroup>

Output

Example image of rendered tag group

Rate this page: