"use client"; import { Geist, Geist_Mono } from "next/font/google"; import { Menu } from "./components/Sidebar"; import { Bounce, ToastContainer } from "react-toastify"; import { Suspense } from "react"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); type APPProps = { children: React.ReactNode; }; export const App = ({ children }: APPProps) => { return (
{children}
); };