@formio/core
Version:
The core Form.io renderering framework.
45 lines (44 loc) • 1 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
type: 'array',
key: 'employees',
components: [
{
type: 'component',
key: 'firstName'
},
{
type: 'component',
key: 'lastName'
},
{
type: 'data',
key: 'department',
components: [
{
type: 'component',
key: 'name'
},
{
type: 'component',
key: 'phoneNumber'
}
]
},
{
type: 'array',
key: 'children',
components: [
{
type: 'component',
key: 'firstName'
},
{
type: 'component',
key: 'dob'
}
]
}
]
};
;