props.children
🚙

props.children

Now suppose you have to use some wrapping element in between which you want some content then you have to use props.children
// as we know that to use the context we have to wrap such element between // <contextname.Provider> </contextname.Provider> const subscriptionContextProvider=(props)=>{ <subscriptionContext.Provider> {props.children} </subscriptionContext.Provider> } export default subscriptionContextProvider