How can I use radio inputs instead of checkboxes for a selectable table in React Table?
There is an example for checkboxes but not radio buttons: https://github.com/tannerlinsley/react-table/blob/master/examples/row-selection/src/App.js
Changing the IndeterminateCheckox to use a radio input doesn't work as the selection state is not updated in React Table:
const IndeterminateCheckbox = React.forwardRef(({ indeterminate, ...rest }, ref) => {
    const defaultRef = React.useRef();
    const resolvedRef = ref || defaultRef;
    useEffect(() => {
      resolvedRef.current.indeterminate = indeterminate;
    }, [resolvedRef, indeterminate]);
    return <input name="select-radio" type="radio" ref={resolvedRef} {...rest} />
    );
  });
It looks correct but does not pass the correct selection state back:

