mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-10 12:46:37 +00:00
13 lines
269 B
TypeScript
13 lines
269 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
type OrgPageProps = {
|
|
params: Promise<{ orgId: string }>;
|
|
};
|
|
|
|
export default async function Page(props: OrgPageProps) {
|
|
const params = await props.params;
|
|
redirect(`/${params.orgId}/sites`);
|
|
|
|
return <></>;
|
|
}
|