diff --git a/app/login/layout.tsx b/app/login/layout.tsx new file mode 100644 index 0000000..142e9f9 --- /dev/null +++ b/app/login/layout.tsx @@ -0,0 +1,10 @@ +import React from "react"; +import AuthProvider from "@/components/shared/providers/AuthProvider"; + +export default function AdminLayout({ + children +}: { + children: React.ReactNode; +}) { + return {children}; +}