Fragments lets you group things in JSX without leaving any trace in the browser HTML tree

return (
	<>
		<p>hiii</p>
		<p>byeee</p>
	</>
)