mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-14 22:45:50 +00:00
15 lines
199 B
TypeScript
15 lines
199 B
TypeScript
|
|
export default async function UserUpdate({
|
|
params,
|
|
}: {
|
|
params: Promise<{
|
|
userId: string;
|
|
}>;
|
|
}) {
|
|
const { userId } = await params;
|
|
|
|
return (
|
|
<div>UserUpdate: {userId}</div>
|
|
)
|
|
}
|