美文网首页
最基本例子

最基本例子

作者: WWWWWWWWWWWWWWM | 来源:发表于2021-06-08 14:21 被阅读0次
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>Hello World</title>
    <script src="https://unpkg.com/react@17/umd/react.development.js"></script>
    <script src="https://unpkg.com/react-dom@17/umd/react-dom.development.js"></script>

    <!-- Don't use this in production: -->
    <script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
  </head>
  <body>
    <div id="root"></div>
    <script type="text/babel">

      ReactDOM.render(
        <h1>Hello, world!</h1>,
        document.getElementById('root')
      );

    </script>
    <!--
      Note: this page is a great way to try React but it's not suitable for production.
      It slowly compiles JSX with Babel in the browser and uses a large development build of React.

      Read this section for a production-ready setup with JSX:
      https://reactjs.org/docs/add-react-to-a-website.html#add-jsx-to-a-project

      In a larger project, you can use an integrated toolchain that includes JSX instead:
      https://reactjs.org/docs/create-a-new-react-app.html

      You can also use React without JSX, in which case you can remove Babel:
      https://reactjs.org/docs/react-without-jsx.html
    -->
  </body>
</html>

来自在网站中添加 React – React (docschina.org)

相关文章

  • 最基本例子

    来自在网站中添加 React – React (docschina.org)[https://react.docs...

  • python 可视化笔记

    一.pandas包里内置的绘图函数 1. plot() :最基本的绘图函数 例子1,Series数据: 例子2,D...

  • spring容器初始化过程(IOC容器源码分析)

    引言 词语解释 开始 1.先看下最基本的启动 Spring 容器的例子:(基于spring 5.0.x) ※注意 ...

  • Spark on Yarn 部分一原理及使用

    Spark on Yarn 首先这部分分为源码部分以及实例部分,例子中包括最基本的通过spark-submit提交...

  • 37、highlight 高亮显示

    主要内容:highlight 高亮显示 1、一个最基本的高亮例子 ​ 使用高亮搜索: 表现,会变成红色,所以说...

  • 变量的类型和计算

    变量类型 JS变量最基本的分类就是值类型和引用类型,而两者的区别,我这里举个例子看一下。 以下是值类型的一个例子:...

  • Vue中计算属性computed的实现原理

    基本介绍 话不多说,一个最基本的例子如下: Vue中我们不需要在template里面直接计算{{this.firs...

  • JS中的forEach、$.each、map方法推荐[转载]

    forEach是ECMA5中Array新方法中最基本的一个,就是遍历,循环。例如下面这个例子:[1, 2 ,3, ...

  • static 关键字

    静态变量 最基本的知识 连续声明会报错 后期静态绑定 理解继承 复杂的例子 总结,无论在静态绑定前调用的是 sel...

  • Swift类

    Swift中类以关键字class开头 1.最基本例子 2.重写init方法 3.继承 4.属性关联,get 和 s...

网友评论

      本文标题:最基本例子

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