504 B
504 B
title, tags
| title | tags |
|---|---|
| Callto | components,beginner |
Renders a link formatted to dial a phone number.
- Destructure the component's props, 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="+923081734339">
Call me!
</Callto>,
document.getElementById('root')
);