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.
17 lines
517 B
17 lines
517 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;
|
|
require('dotenv').config();
|
|
import { store } from '../redux/store';
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return ( <Provider store={store}>
|
|
<Component {...pageProps} />
|
|
</Provider>
|
|
)
|
|
}
|
|
|
|
export default MyApp
|
|
|