mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-16 09:15:50 +00:00
feat: implement user verification and rejection functionality with improved error handling ✨
This commit is contained in:
14
app/(dashboard)/users/[userId]/update/page.tsx
Normal file
14
app/(dashboard)/users/[userId]/update/page.tsx
Normal file
@ -0,0 +1,14 @@
|
||||
|
||||
export default async function UserUpdate({
|
||||
params,
|
||||
}: {
|
||||
params: Promise<{
|
||||
userId: string;
|
||||
}>;
|
||||
}) {
|
||||
const { userId } = await params;
|
||||
|
||||
return (
|
||||
<div>UserUpdate: {userId}</div>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user