You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
pizza.krasnikov.pro/.history/pages/_app_20220518143835.tsx

16 lines
489 B

import '../styles/globals.scss';
import type { AppProps } from 'next/app';
import { Provider } from 'react-redux';
import { config } from '@fortawesome/fontawesome-svg-core'
import '@fortawesome/fontawesome-svg-core/styles.css'
config.autoAddCss = false;
import { store } from '../redux/store';
function MyApp({ Component, pageProps }: AppProps) {
return ( <Provider store={store}>
<Component {...pageProps} />
</Provider>
)
}
export default MyApp