The below example will helps to getting substring
of props value using React and it will also very helpful to maximum amount of
characters in a div/paragraph tag in React.
As
an Example,
import React, { Component } from 'react'
export default class UserDetail extends Component {
state ={
min_char: 0,
max_char:150,
desciption:''
}
constructor(props) {
super(props);
let desc = this.props.desciption;
this.state.desciption = desc.substring(this.state.min_char,this.state.max_char);
}
render() {
return (
<>
<div>{`${this.state.desciption} ...`}</div>
</>
)
}
}