480 B
480 B
title, tags, unlisted
| title | tags | unlisted |
|---|---|---|
| Callto | components,beginner | true |
Renders a link formatted to call a phone number (tel: link).
- Use
phoneto create a<a>element with an appropriatehrefattribute. - Render the link with
childrenas its content.
const Callto = ({ phone, children }) => {
return <a href={`tel:${phone}`}>{children}</a>;
};
ReactDOM.render(
<Callto phone="+302101234567">Call me!</Callto>,
document.getElementById('root')
);