# Screen Navigation Prop Each screen in your app will recieve a navigation prop, which contains the following: ## `navigate` - Link to other screens Call this to link to another screen in your app. Takes the following arguments: - `routeName` - A destination routeName that has been registered somewhere in the app's router - `params` - Params to merge into the destination route - `action` - (advanced) The sub-action to run in the child router, if the screen is a navigator. ```js class HomeScreen extends React.Component { render() { const {navigate} = this.props.navigation; return ( This is the home screen of the app