REACTJS Limit Text Display 20 200 символов

<div>
  {`${text.substring(0, MAX_LENGTH)}...`}<a href="#">Read more</a>
</div>
Dayanaohhnana