- All react components can be self closing. This includes basic html tags because React converts JSX elements to React Elements well before they are represented in the DOM.
const ImageWrapper = ({src}) => (
<div
class="wrapper"
style={{ backgroundImage: `url('${src}')` }}
/>
)is transpiled to:
React.createElement("div", {
class: "wrapper",
style: {
backgroundImage: `url('${src}')`
}
});Links: