import { Form, Input, Button } from '@cap-rel/smartcommon'; function ContactForm() { const handleSubmit = (values) => { console.log(values); // { name: 'Jean', email: 'jean@example.com' } }; return (