📅  最后修改于: 2022-03-11 14:48:31.353000             🧑  作者: Mango
class Test extends Component {
constructor(props : PropsType){
super(props)
}
render(){
console.log(this.props)
return (
this.props.whatever
)
}
};