reactjs拨打电话

import React from 'react';

function PhoneCall({ phoneNumber }) {
  const handleCall = () => {
    window.location.href = `tel:${phoneNumber}`;
  };

  return (
    <button onClick={handleCall}>
      Call {phoneNumber}
    </button>
  );
}

export default PhoneCall;
posted @ 2024-09-05 22:44  小小强学习网  阅读(3)  评论(0编辑  收藏  举报