ConstBasic usage
bubble([
headerBar({title: 'Modular UI form'}),
group([
inputField({
name: 'firstName',
label: 'First name',
defaultValue: 'Mark',
}),
]),
navigationBar({
buttons: [
{text: 'Cancel', value: 'cancel'},
{text: 'Submit', value: 'submit'}
]
}),
]);
Bubble component for displaying various types of content.