Fragment
让组件可以定义返回多个子元素而无需多嵌套一层根元素
jsx
<React.Fragment>
<ChildA />
<ChildB />
<ChildC />
</React.Fragment>
<>
<ChildA />
<ChildB />
<ChildC />
</>