mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 00:36:06 +00:00
8 lines
232 B
TypeScript
8 lines
232 B
TypeScript
import { redirect } from "next/navigation";
|
|
|
|
export default async function UserPage(props: {
|
|
params: Promise<{ userId: string }>;
|
|
}) {
|
|
const { userId } = await props.params;
|
|
redirect(`/admin/users/${userId}/general`);
|
|
}
|