组件 & Props

最后更新于:2022-04-02 03:33:31

[TOC] > 组件可以接受任意 props,包括基本数据类型,React 元素以及函数。 ## 函数组件 ``` function Welcome(props) { return

Hello, {props.name}

; } ``` ## class 组件 ``` class Welcome extends React.Component { render() { return

Hello, {this.props.name}

; } } ``` ## props 用法 > 注意: 组件名称必须以大写字母开头。 ``` function Welcome(props) { return

Hello, {props.name}

; } const element = ; ReactDOM.render( element, document.getElementById('root') ); ``` ## 组合组件 > 多个组件用 括号 ``` function Welcome(props) { return

Hello, {props.name}

; } function App() { return (
); } ReactDOM.render( , document.getElementById('root') ); ```
';