21 lines
493 B
TypeScript
Executable File
21 lines
493 B
TypeScript
Executable File
import { Suspense } from "react";
|
|
import PageHeader from "../../../_components/page-header";
|
|
import OrganizationEditPageClient from "./page.client";
|
|
|
|
export const metadata = {
|
|
title: "User",
|
|
};
|
|
|
|
export default function UserPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<PageHeader title="Ubah User" />
|
|
<div className="px-6">
|
|
<Suspense fallback={<div>Memuat Data...</div>}>
|
|
<OrganizationEditPageClient />
|
|
</Suspense>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|