$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>reactjs - Add dynamic phone Number in react - Stack Overflow|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

reactjs - Add dynamic phone Number in react - Stack Overflow

matteradmin12PV0评论

I create the component with the phone number

const PhoneNumber = () => {
  return (
    <div>123-456-7890</div>
  )
}

and I add it in href

<a href="tel: 123-456-789" title="Phone Number" className="transition"><PhoneNumber/></a>

how can I add in href="tel:123-456-789"

I create the component with the phone number

const PhoneNumber = () => {
  return (
    <div>123-456-7890</div>
  )
}

and I add it in href

<a href="tel: 123-456-789" title="Phone Number" className="transition"><PhoneNumber/></a>

how can I add in href="tel:123-456-789"

Share Improve this question asked Nov 16, 2024 at 6:09 Nazar KardanNazar Kardan 651 silver badge5 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Let me explain about your problem. You can change your code as my sample below

import React from 'react';

const PhoneNumber = ({ number }) => {
  return (
    <div>{number}</div>
  );
};

export default PhoneNumber;

Code for the component

import React from 'react';
import PhoneNumber from './PhoneNumber';

const App = () => {
  const phoneNumber = "123-456-7890";

  return (
    <div>
      <a href={`tel:${phoneNumber}`} title="Phone Number" className="transition">
        <PhoneNumber number={phoneNumber} />
      </a>
    </div>
  );
};

export default App;

Code for the main functions. With my samples you can assign your phone number dynamic rather than static.

Post a comment

comment list (0)

  1. No comments so far