react组件

Posted 天行子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react组件相关的知识,希望对你有一定的参考价值。

实例

<div id="example"></div>
<script type="text/babel">
    function HelloMessage(props) {
        return <h1>Hello World!</h1>;
    }

    const element = <HelloMessage />;

    ReactDOM.render(
        element,
        document.getElementById(\'example\')
    );
</script>

实例


<div id="example"></div>
<script type="text/babel">
    function Name(props) {
        return <h1>网站名称:{props.name}</h1>;
    }
    function Url(props) {
        return <h1>网站地址:{props.url}</h1>;
    }
    function Nickname(props) {
        return <h1>网站小名:{props.nickname}</h1>;
    }
    function App(props) {
        console.log(props);
        return (
            <div>
                <Name name={props.name} />
                <Url url={props.url} />
                <Nickname nickname={props.nickname} />
            </div>
        );
    }

    ReactDOM.render(
        <App name="百度" url="www.baidu.com" nickname="huyongjian" />,
        document.getElementById(\'example\')
    );
</script>

以上是关于react组件的主要内容,如果未能解决你的问题,请参考以下文章

React 函数组件与class组件的区别

已解决在react+ts中 atnd 用 upload 组件报错Failed to execute ‘readAsArrayBuffer,param 1 is notof type Blob(代码片段

已解决在react+ts中 atnd 用 upload 组件报错Failed to execute ‘readAsArrayBuffer,param 1 is notof type Blob(代码片段

[译] 如何在React中写出更优秀的代码

是否有用于 React Function 组件的类型,包括返回片段、空值、字符串等?

react简介