auto push

This commit is contained in:
2024-04-19 11:01:02 +08:00
parent a5052f5bd0
commit a6580e9594
5 changed files with 81 additions and 52 deletions

View File

@@ -1,8 +1,16 @@
import { LayoutValidasi } from "@/app_modules/auth";
import { ActionIcon, Button } from "@mantine/core";
import Link from "next/link";
import React from "react";
export default async function Layout({children}: {children: React.ReactNode}) {
return<>
<LayoutValidasi>{children}</LayoutValidasi>
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<LayoutValidasi>{children}</LayoutValidasi>
</>
}
);
}