Children Props
import React from 'react'
function ChildProps(props) {
return (
<div>
{props.children}
</div>
)
}
export default ChildPropsLast updated
import React from 'react'
function ChildProps(props) {
return (
<div>
{props.children}
</div>
)
}
export default ChildPropsLast updated
<ChildProps>
Hello
<p>Hello</p>
</ChildProps>