Files
KAFM-Project/app/dashboard/compliance-safety/auditAndSurvey/page.tsx

23 lines
267 B
TypeScript

"use client"
import AuditSurveyPortal from "@/components/dashboard/compliance/auditAndSurvey";
export default function AuditSurveyPage() {
return (
<div className="p-6 mx-2">
<AuditSurveyPortal/>
</div>
);
}