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

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