0


React学习案例二十一

React学习案例二十一

<!DOCTYPE html><html><head><meta charset="UTF-8"/><title>菜鸟教程 React 实例</title></head><body><div id="example"></div><script type="text/babel">
var title ="菜鸟教程";// var title =123;classMyTitle extends React.Component {
  render(){return(<h1>Hello,{this.props.title}</h1>);}}

MyTitle.propTypes ={
  title: PropTypes.string
};
ReactDOM.render(<MyTitle title={title}/>,
    document.getElementById('example'));</script></body></html>

本文转载自: https://blog.csdn.net/m0_54218263/article/details/122772874
版权归原作者 hhh江月 所有, 如有侵权,请联系我们删除。

“React学习案例二十一”的评论:

还没有评论