import { Cart } from "lib/types"; import { ReactNode } from "react"; import { Toaster } from "sonner"; import { CartProvider } from "./cart/cart-context"; import { Navbar } from "./layout/navbar"; import { WelcomeToast } from "./welcome-toast"; export function Wrapper({ children, currency, cart }: { children: ReactNode, currency: string, cart: Promise }) { return
{children}
}