import "../styles/globals.css"; import { Provider } from "react-redux"; import type { AppProps } from "next/app"; import store from "../lib/store"; function MyApp({ Component, pageProps }: AppProps) { return ( ); } export default MyApp;