Explore Library
Code QuizIntermediate

Custom Header Right Button

Spot the mistake in configuring a custom headerRight button.

Codejavascript
<Stack.Screen
  name="Home"
  component={HomeScreen}
  options={{
    headerRight: <Button title="Save" onPress={save} />,
  }}
/>

What is the bug in this code?