JSX is not a string-based templating language; it compiles to actual JavaScript function calls. For example,
Here are some children
transpiles to
React.createElement("div", {attr1: "something", attr2: "other"},
"Here are some ", React.createElement("span", null, "children")
)