Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图了解在编写 React JS 代码时何时使用<>以及何时使用。<div>
<>
<div>
当我在它们之间切换时格式不同,但我不知道为什么。
<>Hello</>是一个呈现为 html 文本的 JSX 元素Hello。 <div>Hello</div>是一个 JSX 元素,其中包含一个呈现为 的 div <div>Hello</div>。
<>Hello</>
Hello
<div>Hello</div>