mirror of
https://github.com/fosrl/pangolin.git
synced 2026-09-08 20:16:50 +02:00
11 lines
313 B
TypeScript
11 lines
313 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default async function ResourcePage(props: {
|
|
params: Promise<{ resourceId: number | string; orgId: string }>;
|
|
}) {
|
|
const params = await props.params;
|
|
redirect(
|
|
`/${params.orgId}/settings/resources/${params.resourceId}/connectivity`
|
|
);
|
|
}
|