Petropoulos Evangelos 845913e94b build versiion
2025-07-17 20:31:45 +03:00

11 lines
178 B
TypeScript

"use client";
export default function BackOfficeUsersPage() {
return (
<div>
{/* This page will now be rendered on the client-side */}
hello
</div>
);
}