react 方法内返回dom的方法

function MyComponent() {
  return (
    <React.Fragment>
      Some text.
      <h2>A heading</h2>
      More text.
      <h2>Another heading</h2>
      Even more text.
    </React.Fragment>
  )
}

html中调用方法
<div>{
MyComponent()}</div>

posted on 2022-10-14 13:40  ranyonsue  阅读(25)  评论(0编辑  收藏  举报

导航