aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/routes/index.tsx
blob: 252abece25b7e5e0b404ace45a7ede506e2c443a (plain)
1
2
3
4
5
import { Navigate, redirect, type LoaderFunction } from "react-router";

export default function Index() {
  return <Navigate to={"/stops"} replace />;
}