<FormWrapper
validationSchema={Yup.object().shape({
textInput: Yup.string().required(),
})}
render={() => (
<FormItem name="textInput">
<FormItem.Label>The label</FormItem.Label>
<FormItem.Input
FormikComponent={FastField}
component={TextInput}
placeholder="Placeholder"
/>
<FormItem.Error />
</FormItem>
)}