DEV Community

Discussion on: How to Add Infinite Scrolling to Your React App

Collapse
 
aumayeung profile image
John Au-Yeung

Thanks very much for reading.

Did you have Formik and Yup installed?

Also, this part:

const schema = yup.object({  
  query: yup.string().required('Query is required'),  
});

is pretty important. You've to remember to pass that in.