@talend/react-forms
Version:
React forms library based on json schema form.
36 lines (35 loc) • 626 B
JSON
[
{
"title": "A registration form",
"widget": "fieldset",
"items": [
{
"key": "firstName",
"title": "First name",
"widget": "text"
},
{
"key": "lastName",
"title": "Last name",
"widget": "text"
},
{
"key": "age",
"title": "Age",
"type": "number",
"widget": "text"
},
{
"key": "bio",
"title": "Bio",
"widget": "textarea"
},
{
"key": "password",
"title": "Password",
"type": "password",
"widget": "text"
}
]
}
]