=
with jsx
const x = 5;
let text = "Goodbye";
if (x < 10) {
text = "Hello";
}
const myElement = <h1>{text}</h1>;
=
without jsx
const x = 5;
const myElement = <h1>{(x) < 10 ? "Hello" : "Goodbye"}</h1>;
=
How we can listen to som eevents some envents fire like click or automatically user enters into input button , that is event on word type i...
No comments:
Post a Comment