@kdhrubo the comment block style to use inside React components using JSX would be wrapping with /* so {/* this is a comment block /*} is the correct style, rather than HTML comment (which still works technically, but we get warnings in tooling and IDEs because we are in a React .js file and using JSX in a component - so no HTML context at all - HTML is generated runtime.)
@kdhrubo the comment block style to use inside React components using JSX would be wrapping with
/*
so{/* this is a comment block /*}
is the correct style, rather than HTML comment (which still works technically, but we get warnings in tooling and IDEs because we are in a React .js file and using JSX in a component - so no HTML context at all - HTML is generated runtime.)