setting a date range using yup on react date picker
constYourSettingSchema=Yup.object().shape({dateOfBirth:Yup.string().nullable().test('Date of Birth','Should be greather than 18',function(value){returnmoment().diff(moment(value),'years')>=18;}),});