const columns = [{
dataField: 'firstName',
text: 'Visitor Name'
},
{
dataField: 'lastName',
text: ''
},];
<BootstrapTable keyField='id' data={ products} columns={ columns } />
Here firstName and lastName should be in one column.