Mitchell Magro 60af9a6e28 Added rules
2025-07-04 14:14:00 +02:00

14 lines
310 B
TypeScript

// This ensures this component is rendered only on the client side
"use client";
import { Approve } from "@/app/features/Pages/Approve/Approve";
export default function BackOfficeUsersPage() {
return (
<div>
{/* This page will now be rendered on the client-side */}
hello
</div>
);
}