JSX in ReactJs
JSX in ReactJs
import React from "React";import ReactDom from "react-dom";ReactDOM.render(<h1>Hello World!</h1>,document.getElementById("root"));
JSX
JSX stands for "JavaScript XML ", JSX allows you to write HTML in React by converting HTML into React components, helping you to more easily create user interfaces for your web applications.
ex.
<h1>Hello World!</h1>
Post a Comment