--- title: Mailto tags: components,beginner --- Renders a link formatted to send an email. - Destructure the component's props, use `email`, `subject` and `body` to create a `` element with an appropriate `href` attribute. - Render the link with `props.children` as its content. ```jsx function Mailto({ email, subject, body, ...props }) { return ( {props.children} ); } ``` ```jsx ReactDOM.render( Mail me! , document.getElementById('root') ); ```