Is a React.Fragement the same as a DocumentFragment? – Javascript
React.Fragement looks like DocumentFragment. But does React.Fragment has the same performance benefits like DocumentFragment? In other words, are this // index.jsx const arr = [...Array.from({length: 10000})]; return ( <ul> <> {arr.map((x, i) => <li>{i}</li>)} </> </ul> ) and this //…