import { Link } from 'react-router'; const columns = [ { header: '', id: 'links', render: ({ row }) => (<Link to={{ pathname: `/example/${row.id}` }}>{row.name}</Link>) } ];