I can pass a custom component to the back link, to get it to use react-router's Link.
import { BackLink } from "nhsuk-react-components";
import { Link } from "react-router-dom";
...
<BackLink asElement={Link} to="..">
Back
</BackLink>
It would be nice if <ButtonLink> also supported this.