// PatientRouter — superseded by the intent grid on the Landing page.
// The old #patient-router hash redirects to Home so any external link still
// lands the user on the new decision-tree entry.

function PatientRouter({ go }) {
  React.useEffect(() => { if (go) go('landing'); }, [go]);
  return null;
}

window.PatientRouter = PatientRouter;
