23 lines
267 B
TypeScript
23 lines
267 B
TypeScript
"use client"
|
|
|
|
import AuditSurveyPortal from "@/components/dashboard/compliance/auditAndSurvey";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function AuditSurveyPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<AuditSurveyPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |