• Lets you group elements without a wrapper node.

    Parameters

    Returns ReactNode

    See

    React Docs

    Example

    import { Fragment } from 'react';

    <Fragment>
    <td>Hello</td>
    <td>World</td>
    </Fragment>

    Example

    // Using the <></> shorthand syntax:

    <>
    <td>Hello</td>
    <td>World</td>
    </>

Properties

Properties

$$typeof: symbol