Skip to content
作者:  WHY
字数统计: 
阅读时长:  分钟
阅读量: 

Get Started

组件返回多个 JSX/TSX 元素

tsx
// wrong
// export default function MyComponent() {
//   return <button>X</button><button>X</button>;
// }

// right 使用空元素 <></> 包裹
export default function MyComponent() {
  return (
    <>
      <button>X</button>
      <button>X</button>
    </>
  );
}

Contributors

The avatar of contributor named as why why

Changelog

Released under the MIT License.