Changing column width in react-table
In react-table v7 you need to use a layout hook (useBlockLayout, useAbsoluteLayout or useFlexLayout) so the specified width is applied. Important: all those hooks set a default column width to 150px. You can see an example in Full Width Resizable Table. In react-table v8 you can use the attributes size, minSize and maxSize on the … Read more