import { type ReactNode } from "react"; import blurredDashboardBackgroundMenuTop from "~/assets/images/blurred-dashboard-background-menu-top.jpg"; import blurredDashboardBackgroundMenuBottom from "~/assets/images/blurred-dashboard-background-menu-bottom.jpg"; import blurredDashboardBackgroundTable from "~/assets/images/blurred-dashboard-background-table.jpg"; export function BackgroundWrapper({ children }: { children: ReactNode }) { return (
{children}
); }