rendre la table réactive react-bootstrap-table2

<BootstrapTable
    keyField='id'
    data={tableData}
    columns={columns}
    pagination={paginationFactory()}
    striped
    bordered={false}
    wrapperClasses="table-responsive" // This is the style provided by bootstrap 4, this will set the parent div with that class
/>
capitalistlion