0 votes
in ReactJS by
Do browsers understand JSX code?

1 Answer

0 votes
by

No, browsers can't understand JSX code. You need a transpiler to convert your JSX to regular Javascript that browsers can understand. The most widely used transpiler right now is Babel.

...