---
title: Callto
tags: components,beginner
---
Renders a link formatted to dial a phone number.
- Destructure the component's props, 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')
);
```