upd: global admin

Deskripsi:
- variable global untuk task

NO Issues
This commit is contained in:
amel
2024-09-10 16:48:25 +08:00
parent 6a33333ecf
commit 6ba2c0fc79
9 changed files with 94 additions and 71 deletions

View File

@@ -0,0 +1,12 @@
import { WrapLayoutDivision } from "@/module/division_new";
import _ from "lodash"
export default async function Layout({ children }: { children: React.ReactNode }) {
return (
<>
<WrapLayoutDivision>
{children}
</WrapLayoutDivision>
</>
);
}