React Fragement example
import React, { Component, Fragment } from "react";
class App extends Component {
render() {
// return React.createElement("h1",null, "Hello Geeky shows..");
return (
//Using Fragment : is m hum multiple element use kar sakte hai.
// <Fragment>
// <h1>Hello Geeky Shows .</h1>
// <h2>Hillo again baby.</h2>
// </Fragment>
// <> and </> is use instead of fragment tag.
<>
<h1>Hello Geeky Shows .</h1>
<h2>Hillo again baby.</h2>
</>
);
}
}
export default App;
Comments
Post a Comment