check the render method of DrawerNavigatorItems react native code example
Example: check the render method of drawerview
He tried importing a default-exported component as a named import.
export default component
import { component }
The right way is
export default component
import component
or
export { component }
import { component }