// for printing using js // const heading=document.createElement("h1"); // heading.innerHTML="Welcome Vipul"; // const root= document.getElementById("root"); // root.appendChild(heading);
// using react
// episode 1( using core react) // const heading= React.createElement("div",{className:"h2color"},[React.createElement("h2",{},"Welcome Vipul"),React.createElement("div",{},React.createElement("h5",{},"Welcome Vipul"))]); // const root= ReactDOM.createRoot(document.getElementById("root")); // root.render(heading);
//using jsx
// const root = ReactDOM.createRoot(document.getElementById("root")); // root.render(heading);
//using react functional component