📅  最后修改于: 2022-03-11 15:02:20.845000             🧑  作者: Mango
constructor() {
super();
this.state ={
status:true
}
}
render() {
return(
{ this.state.status === true ?
this.hideView()}>
Ok Fine :)
:
Ok Fine.
}
);
}
hideView(){
this.setState({
home:!this.state.status
});
}