Skip to content

渲染原理

提示

可类比于 vue 中的 h 函数

js
import { createElement } from 'react'

function Vdom() {
  return createElement('h1', { id: 'title' }, 'hello react')
}

export default Vdom

基于 MIT 许可发布