// /pages/_app.js import React from "react"; import { Provider } from "react-redux"; import { store } from "../redux/store"; import "../styles/global.css"; function MyApp({ Component, pageProps }) { return ( ); } export default MyApp;