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
- All diagnostics — every code the framework can report.
- Checking your app — the faults proved from the source, before anything runs.