import React, { Component } from 'react'; import { connect } from 'react-redux'; import { selectGame } from '../Action/action'; import { withRouter } from './withRouter'; class Games extends Component { componentDidMount() { this.props.selectGame(null); } handlebook = (game) => { this.props.selectGame(game); this.props.navigate('/book'); }; handleSearch = () => { this.props.navigate('/search'); }; render() { return (