/* ======================================== File: frontend/app/(routes)/map/layout.tsx ======================================== */ import type React from "react"; // import { PageLayout } from "@/components/common/PageLayout"; // Example using a common layout // This layout is specific to the map feature's route group export default function MapFeatureLayout({ children }: { children: React.ReactNode }) { return ( // {/* Example using common layout */} // The MapSidebar might be rendered here if it's part of the layout
{" "} {/* Ensure content takes up space */} {children}
//
); }