使用React匿名功能组件渲染到屏幕上

问题描述 投票:1回答:1

你好,我有一个jsfiddle:https://jsfiddle.net/hy8cuvfg/

html

<div id="container">
    <!-- This element's contents will be replaced with your component. -->
</div>

js

ReactDOM.render(
  {()=><p>hello world!</p>},
  document.getElementById('container')
);

我正在尝试输出'hello world!'。我想使用匿名功能组件来完成这项工作:

()=><p>hello world!</p>

我该如何解决?谢谢:)

reactjs components
1个回答
0
投票

无论如何,ESLint和Airbnb都会为此加温:

https://stackblitz.com/edit/react-o1tzhd

祝你好运

© www.soinside.com 2019 - 2024. All rights reserved.