11 lines
178 B
TypeScript
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>
|
|
);
|
|
}
|