rowMainContent(min 1): an array of row componentsrowAsideContent(min 1): an array of row components
- Typescript SDK
- GraphQL
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Useful when you need to show two things next to each-other.
rowMainContent (min 1): an array of row componentsrowAsideContent (min 1): an array of row componentsimport { uiComponent } from '@team-plain/typescript-sdk';
uiComponent.row({
mainContent: [uiComponent.text({ text: 'Membership' })],
asideContent: [uiComponent.badge({ label: 'Premium plan', color: 'BLUE' })],
});
{
"componentRow": {
"rowMainContent": [
{
"componentText": {
"text": "Membership"
}
}
],
"rowAsideContent": [
{
"componentBadge": {
"badgeLabel": "Premium plan",
"badgeColor": "BLUE"
}
}
]
}
}
Was this page helpful?
