react props
Posted 天行子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react props相关的知识,希望对你有一定的参考价值。
react props
function HelloMessage(props) {
return <h1>Hello {props.name}!</h1>;
}
const element = <HelloMessage name="Runoob"/>;
ReactDOM.render(
element,
document.getElementById(\'example\')
);
默认 Props
class HelloMessage extends React.Component {
render() {
return (
<h1>Hello, {this.props.name}</h1>
);
}
}
HelloMessage.defaultProps = {
name: \'Runoob\'
};
const element = <HelloMessage/>;
ReactDOM.render(
element,
document.getElementById(\'example\')
);
以上是关于react props的主要内容,如果未能解决你的问题,请参考以下文章
[React] Use React.ReactNode for the children prop in React TypeScript components and Render Props(代码