const customHeader = ({title}) => {
return(
<View>
<Text>{title}</View>
</View>
)
}
const Navigation = () => {
return(
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Main" component={MainComponent}
options={{
header: () => <CustomHeader title="메인"/>
}}
/>
</Stack.Navigator>
</NavigationContainer>
)
}