reactjs/react.dev#345
React is adding a top-level React.Fragment export that transpiles to JSX as:
<>
<li>Stuff</li>
<li>Things</li>
</>
React.createElement(React.Fragment, {}, ...)
Would Preact be able to support fragments or provide some type of fallback?
reactjs/react.dev#345
React is adding a top-level React.Fragment export that transpiles to JSX as:
Would Preact be able to support fragments or provide some type of fallback?