Невозможно выделить текст в React JS - PullRequest
0 голосов
/ 05 июня 2019

У меня есть реактивный компонент. Текст, который выводится через JSX, недоступен для выбора. Я хочу, чтобы можно было навести указатель мыши на текст и скопировать его. Есть идеи?

В частности, я хочу, чтобы discount_code можно было выбирать.

<div style={styles.discountContainerCode}>
  <div style={styles.titleRowCode}>
    <div style={styles.discountRowTitle}>Code</div>
  </div>
  <div style={styles.codeRowBox}>
    <div style={styles.code} >{this.state.discount_code}</div>
  </div>
  <div style={styles.codeRowTextContainer}>
    <div style={styles.codeRowText}>
      To redeem your code tap the button below, fill out the <u>Free Qoute Online</u> form and enter your code at checkout.
    </div>
  </div>
  <div style={styles.codeRowButton}>
    <div style={styles.codeRowButtonText}>Redeem Code</div>
  </div>
</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...