Files
30-seconds-of-code/snippets/Callto.md
Angelos Chalaris df6770fc51 Update covers
2023-02-16 22:24:44 +02:00

28 lines
604 B
Markdown

---
title: Callable telephone link
tags: components
author: chalarangelo
unlisted: true
cover: rabbit-call
firstSeen: 2020-10-04T00:07:37+03:00
lastUpdated: 2021-01-04T12:32:47+02:00
---
Renders a link formatted to call a phone number (`tel:` link).
- Use `phone` to create a `<a>` element with an appropriate `href` attribute.
- Render the link with `children` as its content.
```jsx
const Callto = ({ phone, children }) => {
return <a href={`tel:${phone}`}>{children}</a>;
};
```
```jsx
ReactDOM.render(
<Callto phone="+302101234567">Call me!</Callto>,
document.getElementById('root')
);
```