add meta tag in react

Getting substring of props value – React

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>
            </>
        )
    }
}

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^