mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-14 12:56:40 +00:00
9 lines
232 B
TypeScript
9 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`);
|
|
}
|