Can Browsers read JSX? If not, Why?
JSX is not valid JavaScript. Web browsers can't read it! If a JavaScript file contains JSX code, then that file will have to be compile...

http://www.interviewquestionspdf.com/2017/01/can-browsers-read-jsx-if-not-why.html
JSX is not valid JavaScript. Web browsers can't read it! If a JavaScript file contains JSX code, then that file will have to be compiled. That means that before the file reaches a web browser, a JSX compiler will translate any JSX into regular JavaScript.