15 lines
251 B
TypeScript
15 lines
251 B
TypeScript
import { AdminLayout } from "@/app_modules/admin/main";
|
|
import React from "react";
|
|
|
|
export default async function Layout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<AdminLayout>{children}</AdminLayout>
|
|
</>
|
|
);
|
|
}
|