Currently code must be like this
<form.AppField
name="name"
children={(field) => (
<field.TextField
label="What repeats?"
placeholder="Kitchen at night"
/>
)}
/>
but I would love to have quick access just as
<form.TextField name="name"
label="What repeats?"
placeholder="Kitchen at night"
/>
is there a way to do it nicely?