Files
UTMS-NG-FE/app/layout.tsx
2026-04-21 06:30:48 +07:00

20 lines
439 B
TypeScript

import type { ReactNode } from "react";
import "@/app/globals.css";
import AppToasts from "@/components/layout/AppToasts";
export const metadata = {
title: "UTMS Admin",
description: "Production-ready admin dashboard for UTMS backend"
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>
{children}
<AppToasts />
</body>
</html>
);
}