Skip to content

Instantly share code, notes, and snippets.

@engmagdy87
Created August 6, 2020 17:28
Show Gist options
  • Select an option

  • Save engmagdy87/3cf282f74421a4df15414d0d8648867d to your computer and use it in GitHub Desktop.

Select an option

Save engmagdy87/3cf282f74421a4df15414d0d8648867d to your computer and use it in GitHub Desktop.
const TruncateText = (text) => {
return `${text.slice(0, 200)}...`
}
export default TruncateText
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment