I just want some clarity on correct comments usage when using React in Meteor.
Do I have to use the {/* React comment */} style everywhere in my code?
I have found that the normal JavaScript comments //... and /*...*/ work in the non-JSX parts of my code (like in the component methods), but I am not sure if it is safe to use.
What is recommended/best practice?