November 2018
Beginner
502 pages
10h 22m
English
In this section, we are going to implement a new ContactUs component using our Form and Field components:
const ContactUs: React.SFC = () => { return ();};
import { Form } from "./Form";
return ( <Form defaultValues={{ name: "", email: "", reason: "Support", notes: "" }} > </Form>);
<Form defaultValues={{ name: "", email: "", reason: "Support", ...Read now
Unlock full access