Can the Browsers read JSX?

Only JavaScript objects can be read by the Browsers. But JSX in not a regular JavaScript object. Thus, in order to enable a Browser to read JSX, we have to perform the following two steps :
1. We have to transform JSX file into a JavaScript object using JSX transformers like Babel.
2. After doing that, we have to pass it to the Browser.