hot to comment out in html code example
Example 1: comment out css
/* this is some commented out css
.my-field{
font-size:10px;
border:1px solid red;
}
*/
Example 2: how to comment out code in react js
render() {
return (
<div>
<!-- This doesn't work! -->
</div>
)
}