mirror of
https://github.com/magnum-opus-tender-hack/frontend.git
synced 2024-11-10 18:36:33 +03:00
13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import '../styles/globals.css'
|
|
import type { AppProps } from 'next/app'
|
|
import {Provider} from 'react-redux';
|
|
import store from '../store'
|
|
|
|
function MyApp({ Component, pageProps }: AppProps) {
|
|
return <Provider store={store}>
|
|
<Component {...pageProps} />
|
|
</Provider>
|
|
}
|
|
|
|
export default MyApp
|