Lets you group elements without a wrapper node.
Optional
React Docs
import { Fragment } from 'react';<Fragment> <td>Hello</td> <td>World</td></Fragment> Copy
import { Fragment } from 'react';<Fragment> <td>Hello</td> <td>World</td></Fragment>
// Using the <></> shorthand syntax:<> <td>Hello</td> <td>World</td></> Copy
// Using the <></> shorthand syntax:<> <td>Hello</td> <td>World</td></>
Readonly
Lets you group elements without a wrapper node.