Click Event and Function
What is JSX?
JSX full form is JavaScript XML. Before JSX we don't write HTML and JavaScript together. But now we can write HTML and JavaScript together.
Example: let ste = "JSX";
<div>{`Hello this is ${ste}`</div>
<div>{10+15}</div>
We can use react ...
codewithjaya.hashnode.dev3 min read