# Developer

## feat
- Memberi akses pada user menjadi admin
### No issue
This commit is contained in:
2024-04-04 14:32:48 +08:00
parent cdcdf704ff
commit f58a5afff5
12 changed files with 389 additions and 79 deletions

View File

@@ -1,14 +0,0 @@
import { LayoutLogin } from "@/app_modules/auth";
import React from "react";
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<LayoutLogin>{children}</LayoutLogin>
</>
);
}