23 lines
256 B
TypeScript
23 lines
256 B
TypeScript
|
|
|
|
|
|
"use client"
|
|
|
|
|
|
import SecurityPortal from "@/components/dashboard/admin/Platform/security";
|
|
|
|
|
|
|
|
|
|
|
|
export default function SecurityPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<SecurityPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |