Open mobile app
Kérdezz ChatbenÜgyfélszolgálat

Szia! Segíthetek?

Ne aggódj, megoldjuk.

Írd meg, mi a helyzet!

import {useState} from 'react'; export default function ContactForm({submitData}) { const [isChecked, setIsChecked] = useState(true); function handleOnChange(e){ setIsChecked(!isChecked); } function handleClick(e){ e.preventDefault(); const firstName = e.target.firstName.value; const lastName = e.target.lastName.value; const email = e.target.email.value; const comment = e.target.comment.value; let formData = { firstName: firstName, lastName: lastName, email: email, comment: comment, checked: isChecked } submitData(formData); // reset e.target.firstName.value = ""; e.target.lastName.value = ""; e.target.email.value = ""; e.target.comment.value = ""; setIsChecked(true); } return (
Card image

How was your experience with us?

We'll never share your email with anyone else.

How would you rate the quality of our product/service?

Did our product/service meet your expectations?