Rendering HTML
At the end of the day, the job of a React component is to render HTML into the DOM browser. This is why JSX has support for HTML tags out of the box. In this section, we'll look at some code that renders a few of the available HTML tags. Then, we'll cover some of the conventions that are typically followed in React projects when HTML tags are used.
Built-in HTML tags
When we render JSX, element tags reference React components. Since it would be tedious to have to create components for HTML elements, React comes with HTML components. We can render any HTML tag in our JSX, and the output will be just as we'd expect.
Now, let's try rendering some of these tags:
import * as React from 'react'; import * as ReactDOM from 'react-dom'; const root = ReactDOM.createRoot(document.getElementById('root')) root.render( <div> <button /> &...