--- title: Callto tags: components,beginner unlisted: true --- Renders a link formatted to call a phone number (`tel:` link). - Use `phone` to create a `` element with an appropriate `href` attribute. - Render the link with `children` as its content. ```jsx const Callto = ({ phone, children }) => { return {children}; }; ``` ```jsx ReactDOM.render( Call me!, document.getElementById('root') ); ```