Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Add Text Inside Of React Component


function Container({children})
{

  return(
    <b>
    {children}
    </b>
  )
}

/*With {children}, you can now write <Container>Hello World </Container> and it will be the same as <b> Hello World</b>*/
 
PREVIOUS NEXT
Tagged: #Add #Text #Inside #Of #React #Component
ADD COMMENT
Topic
Name
8+3 =