美文网首页
react--入坑

react--入坑

作者: w_dll | 来源:发表于2021-10-23 21:51 被阅读0次

    今天目标就是先创建项目,先写一个简单的helloworld!
    学习的慕课 https://www.imooc.com/video/17881

    第一步 搭环境

    先安装 react脚手架
    npm install create-react-app -g

    新建项目
    npm install create-react-app -g

    第二步 运行

    进入项目目录
    npm start



    3000端口已经运行

    第三步 编写helloworld

    写welcome组件

    import React from 'react'
    
    class Welcome extends React.Component {
        render() {
            return <h1>hello world!</h1>
        }
    } 
    
    export default Welcome
    

    修改index.js


    查看 修改成功


    相关文章

      网友评论

          本文标题:react--入坑

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