You have not created a function mapStateToProps, but you are trying to pass it to a function connect.
You should read DOCS for clarity.
For instance:
function mapStateToProps(state) {
return {
navigation: state.navigation
}
}
This will pass navigationout redux storeas a support for your component so that you can access it throughprops.navigation