sarlink-portal/app/page.tsx

6 lines
117 B
TypeScript
Raw Permalink Normal View History

2024-11-24 23:30:44 +05:00
import { redirect } from "next/navigation";
2024-11-23 08:53:16 +05:00
2024-11-24 23:30:44 +05:00
export default async function Home() {
return redirect("/devices");
2024-11-23 08:53:16 +05:00
}