📜  react tsx 组件示例 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:31.353000             🧑  作者: Mango

代码示例2
class Test extends Component {
  constructor(props : PropsType){
        super(props)
  }
  
  render(){
       console.log(this.props) 
    return (
         

this.props.whatever

) } };