ConstBasic usage with content
group([
inputField({
name: 'firstName',
label: 'First name',
defaultValue: 'John',
}),
inputField({
name: 'lastName',
label: 'Last name',
defaultValue: 'Doe',
}),
]);
Usage with options and content
group(
{
className: 'custom-group',
title: 'Personal Information',
description: 'Please fill in your details',
collapsible: true,
initialCollapsed: false
},
[
inputField({
name: 'email',
label: 'Email',
type: 'email',
}),
]
);
Do NOT use the following components as direct children of group:
Group component containing other UI elements.