Interactive card details form with React, Formik, Yup, Sass

Solution retrospective
What do you guys think about the responsiveness? What do you think about the visual aspect of the page? does it look good? What are some practices that you think can be improved?
Please log in to post a comment
Log in with GitHubCommunity feedback
- P@duniandewon
Hi ricardo... I see you have setup your form validation with yup but didn't implement it. You already installed formik so maybe you can do something like this.
const validationSchema = Yup.object().shape({ // Your validation schema }); const { values, errors, touched, handleChange, handleBlur, handleSubmit } = useFormik({ initialValues: { value1: "", value2: "", }, onSubmit: (event) => { // do something here }, validationSchema, });
Join our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord