📅  最后修改于: 2022-03-11 15:03:59.998000             🧑  作者: Mango
class Mod extends React.Component {
constructor(props) {
super();
this.state = {
title : 'Hello world'
};
}
render() {
return(
{this.state.title}
)
}
}