Skip to content

Home

Callable telephone link

Renders a link formatted to call a phone number (tel: link).

const Callto = ({ phone, children }) => {
  return <a href={`tel:${phone}`}>{children}</a>;
};

ReactDOM.createRoot(document.getElementById('root')).render(
  <Callto phone="+302101234567">Call me!</Callto>
);

More like this

Start typing a keyphrase to see matching snippets.