formio-sfds
Version:
The Form.io theme for sf.gov
27 lines (25 loc) • 395 B
JavaScript
const fullName = {
title: 'Full name',
icon: 'user',
schema: {
type: 'container',
label: 'Name',
key: 'name',
tableView: true,
components: [
{
label: 'First name',
key: 'first',
type: 'textfield'
},
{
label: 'Last name',
key: 'last',
type: 'textfield'
}
]
}
}
export default {
fullName
}