Ramonda

RMD037 — An object among JSX children that is not markup

<p>{user}</p>          {/* reported, and dropped */}
<p>{user.name}</p>     {/* the way */}

It is dropped, so the page renders without it. Almost always a value meant to be read from rather than rendered: a whole object where one of its fields belongs, a promise nobody awaited, or a list() descriptor passed as a child instead of returned.

Render a string, a number, a vnode, or a list through list().

Next