import type { AppProps } from "next/app"; import UserContextProvider from "../context/UserContext"; import "../styles/globals.css"; function MyApp({ Component, pageProps }: AppProps) { return ( ); } export default MyApp;