加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
遗忘的联.js 798 Bytes
一键复制 编辑 原始数据 按行查看 历史
咖喱给给 提交于 2022-05-13 03:21 . 作业
import React from 'react'
import ReactDOM from 'react-dom/client'
// const root = ReactDOM.createRoot(document.getElementById('root'))
// // const h1 = React.createElement('h1', null, 'hello word')
// const p = React.createElement('p', null, '月薪过万')
// const p2 = React.createElement('p2', { id: 123, class: 'title' }, '月薪过万')
// const div = React.createElement('div', null, 'hello', p2, p)
// root.render(div)
const root = ReactDOM.createRoot(document.getElementById('root'))
// const h1 = React.createElement('h1', null, 'hello word')
const el = React.createElement(
'div',
null,
React.createElement('h2', null, '购物列表'),
React.createElement('li', null, '华为'),
React.createElement('li', null, '苹果')
)
const p2 = <p>月薪过万</p>
root.render(p2)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化