mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-03 17:26:38 +00:00
11 lines
299 B
TypeScript
11 lines
299 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export interface ResourcesPageProps {
|
|
params: Promise<{ orgId: string }>;
|
|
}
|
|
|
|
export default async function ResourcesPage(props: ResourcesPageProps) {
|
|
const params = await props.params;
|
|
redirect(`/${params.orgId}/settings/resources/proxy`);
|
|
}
|