import type { ReactNode } from "react";

import { AuthBackground } from "@/features/auth/components/auth-background";

type AuthLayoutProps = {
  children: ReactNode;
};

export default function AuthLayout({ children }: AuthLayoutProps) {
  return <AuthBackground>{children}</AuthBackground>;
}
