React Native ReferenceError Can't find variable
As Derek mentioned,
you have never defined
MyAppHeader
, therefore you will get error.
You could delete all <MyAppHeader></MyAppHeader>
in your project, and it should work!
Otherwise you will need to defined MyAppHeader Component to make it works.
Clearly post for React Components Components and Props - React
Hope it will help.