how many outer elements should a jsx expression have?
only one , to make sure that theres only one ,wrap it all inside a div tag or an empty tag
what about self closing tags is important in jsx
always include a slash in the end to not get errors ex : <img></img>
how do i add regular js inside jsx
use curly braces ex:
<h1>{myVariable}</h1>
what is the && operator in react
the expression to the right of the && operator only activates if the statement to the left is true else its ignored ex:
{ rich && buyBuggati}