Skip to content

Latest commit

 

History

History
34 lines (30 loc) · 546 Bytes

05.children-types.md

File metadata and controls

34 lines (30 loc) · 546 Bytes

Children Types

React can render children of many types. In most cases it’s either an array or a string.

//string
function render() {
  return (
    <div>
      Hello World!
    </div>
  )
}

// array
function render() {
  return (
    <div>
      {["Hello ", <span>World</span>, "!"]}
    </div>
  )
}

//Functions may be used as children. However, it requires coordination with
// the parent component to be useful.

// function
function render() {
  return (
    <div>
      { (() => "hello world!")() }
    </div>
  )
}