美文网首页
learn-react之基础

learn-react之基础

作者: 黄飘fighting | 来源:发表于2018-12-25 17:07 被阅读0次

    JSX

    tip:使用jsx必须引用react

    const Hello = (props)=>{
        return (
            <h1>{props.children}</h1>
        )
    }
    export default Hello
    
    image.png

    解决方案

    +import React from 'react'
    const Hello = (props)=>{
        return (
            <h1>{props.children}</h1>
        )
    }
    export default Hello
    

    相关文章

      网友评论

          本文标题:learn-react之基础

          本文链接:https://www.haomeiwen.com/subject/yvoxlqtx.html