Files
30-seconds-of-code/snippets/Callto.md
Angelos Chalaris 9613280f22 Update Callto.md
2020-11-27 09:45:40 +02:00

465 B

title, tags
title tags
Callto components,beginner

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.
const Callto = ({ phone, children }) => {
  return <a href={`tel:${phone}`}>{children}</a>;
};
ReactDOM.render(
  <Callto phone="+302101234567">Call me!</Callto>,
  document.getElementById('root')
);