How to use fragments in React

React
By Jad Joubran · 
Last updated Mar 18, 2020
import React from "react";

function App() {
  return (
    <>
      <p>First element</p>
      <p>Second element</p>
    </>
  );
}