I want to add children elements in the demo
element of the Wrapper
component
function Wrapper() {
return (
<div className="demo">Something</div>
)
}
<Wrapper>
<span>This is something</span>
</Wrapper>
But this doesn't work! What is the correct way to do so?