I want to navigate to another page when that component is clicked so i used to do that easily with Link tag but i want to navigate without link tag . is there any routing concepts rather that this Link tag . can someone clarify me pls .Here i attached my code ,
// Libraries
import React, { Component, Button, PropTypes } from 'react';
import { connect } from 'react-redux';
import { bindActionCreators } from 'redux';
import { Link } from 'react-router-dom'
import {Row} from './dataTables/Row';
class Customers extends Component {
  constructor(props) {
    super(props);
  }
  componentWillMount() {
    this.props.customersActions.fetchCustomers();
  }
  render() {
    return (
     <div className="customer-container">
       <div className="body-container">
          <div className="row-scroll">
             {this.props.customersData.customers.filter(function(customer, index) {
               if(index != 0) return true;
               else return false;
              }).map(customer =>
          <Link to={'/customer/'+ customer.customer_id} key={customer.customer_id}                        className="line-removal">
            
            <Row customer={customer} />
           
           </Link>   // what are all the other options instead of Link ???
                
              )
             }
             
          </div>
       </div>
     </div>
    );
  }
}
function mapStateToProps(state, ownProps) {
  return { customersData: state.customers };
}
export default connect(
  })
)(Customers);above is my code , can someone pls help me out from this.
 
     
    