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