import type { ReactNode } from "react";

export default function CustomerRootLayout({ children }: Readonly<{ children: ReactNode }>) {
  return children;
}
