React JS 19 Tutorial in Hindi #50 fragment in React.js
What is Fragment
Issues Without fragment
Example
Interview Questions
Fragment is a feature that allows you to group a list of children elements without adding extra nodes to the DOM (Document Object Model).
import { Fragment } from "react";
export default function App() {
return (
<>
<Data />
<Data />
<Data />
<Data />
<Data />
</>
);
}
function Data() {
return (
<div>
<h1>Fragment in React js</h1>
<h1>Fragment in React js</h1>
</div>
);
}