import React, { ReactNode } from 'react'; interface DashboardLayoutWrapperProps { children: ReactNode; } /** * DashboardLayoutWrapper * * Full-screen layout wrapper for dashboard pages. * Provides the base container with background styling. */ export function DashboardLayoutWrapper({ children }: DashboardLayoutWrapperProps) { return (
{children}
); }