1. constructor(props){
    2. super(props);
    3. this.state={
    4. msg:"hello world",
    5. isShow:true
    6. }
    7. }
    1. <p>{this.state.isShow?'good':'hello world'}</p>