How to pass data from parent component to children but from children prop ( like Formik) – React native
I will try to explain what I want. Trying to make something like Formik. I want something like this: <Parent> {(someData)=>( <> {console.log(someData)} </> )} </Parent> Parent component have children prop. How to pass this someData from Parent component? Parent…