01:18 | <jschoi> | With regards to https://github.com/tc39/proposal-pipeline-operator/issues/91#issuecomment-1193358142……can someone confirm that <> , without any tag name, actually means something in JSX? |
01:22 | <Luca Casonato> | jschoi: Can confirm. It transpiles down to something along the lines of React.createElement(React.Fragment, ...) . Here is the react docs page: https://reactjs.org/docs/fragments.html#short-syntax. |
01:29 | <rbuckton> | <> is the start of a JSX fragment, with </> marking the end of a fragment. |