Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 563 Bytes

05-maximum-number-of-jsx-root-nodes.md

File metadata and controls

12 lines (10 loc) · 563 Bytes
id title layout permalink prev next
maximum-number-of-jsx-root-nodes
Maximum Number of JSX Root Nodes
tips
maximum-number-of-jsx-root-nodes.html
self-closing-tag.html
style-props-value-px.html

Currently, in a component's render, you can only return one node; if you have, say, a list of divs to return, you must wrap your components within a div, span or any other component.

Don't forget that JSX compiles into regular js; returning two functions doesn't really make syntactic sense. Likewise, don't put more than one child in a ternary.