20 lines
239 B
TypeScript
20 lines
239 B
TypeScript
"use client"
|
|
|
|
|
|
|
|
import UserPortal from "@/components/dashboard/admin/Platform/users";
|
|
|
|
|
|
|
|
|
|
export default function UsersPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-6 mx-2">
|
|
<UserPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |