Using Suspense with form.Field

It's ok using suspense under form.field?
Example:

'''return (
<form .....>
..... other input fields
<form.Field name=providerSelection
..... children= {
<Suspense fallback={<div>Loading<div/>}>
<MyDropdown onSelect={field.handleChange}>
......

}


>'''
Was this page helpful?