Я изучаю react-native
навигация https://reactnavigation.org/docs/intro/. Я вижу в примерах там
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Text>Hello, Chat App!</Text>
<Button
onPress={() => navigate('Chat')}
title="Chat with Lucy"
/>
</View>
);
}
}
Я не мог понять, что именно эта строка кода для const { navigate } = this.props.navigation;