Example container
A container has the following properties:
  • containerContent (min 1): an array of components.
Allowed components within a Container are: For example:
import { uiComponent } from '@team-plain/typescript-sdk';

uiComponent.container({
  content: [uiComponent.text({ text: 'Container content' })],
});