import { Field } from 'formik' import React from 'react' import * as Yup from 'yup' import TextInputFormik from 'src/components/inputs/formik/TextInput' import { H4, P } from 'src/components/typography' const Screen1Information = () => { return ( <>

Screen 1 Information

{/* TODO Add ? icon */}

On screen 1 you will request the user if he agrees on providing this information, or if he wishes to terminate the transaction instead.

) } const validationSchema = Yup.object().shape({ screen1Title: Yup.string() .label('Screen title') .required(), screen1Text: Yup.string() .label('Screen text') .required() }) const defaultValues = { screen1Title: '', screen1Text: '' } export default Screen1Information export { validationSchema, defaultValues }