jsxReactJsxMediumInto what is the JSX `<div>Hello</div>` typically transformed?1React.createElement('div', null, 'Hello')2document.createElement('div')3a plain HTML string sent to the browser4new Component('div')Back to list