source: pages/_app.js@ 0af535a

main
Last change on this file since 0af535a was 87614a5, checked in by anastasovv <simon@…>, 2 years ago

Blackjack prototype

  • Property mode set to 100644
File size: 273 bytes
Line 
1import '../styles/globals.css'
2
3import { store } from '../redux/store'
4import { Provider } from 'react-redux'
5
6function MyApp({ Component, pageProps }) {
7 return (
8 <Provider store={store}>
9 <Component {...pageProps} />
10 </Provider>
11 )
12}
13
14export default MyApp
Note: See TracBrowser for help on using the repository browser.