📅  最后修改于: 2022-03-11 15:04:00.793000             🧑  作者: Mango
class App extends Component {
constructor() {
super()
this.state = { isRed: true }
}
render() {
const isRed = this.state.isRed
return Example Text
}
}