import "../styles/globals.css"; import type { AppProps } from "next/app"; import Container from "../components/Container"; import Navigation from "../components/Navigation"; import { RecoilRoot } from "recoil"; function MyApp({ Component, pageProps }: AppProps) { return ( ); } export default MyApp;