main
Last change
on this file since b4369c8 was 87614a5, checked in by anastasovv <simon@…>, 2 years ago |
Blackjack prototype
|
-
Property mode
set to
100644
|
File size:
273 bytes
|
Line | |
---|
1 | import '../styles/globals.css'
|
---|
2 |
|
---|
3 | import { store } from '../redux/store'
|
---|
4 | import { Provider } from 'react-redux'
|
---|
5 |
|
---|
6 | function MyApp({ Component, pageProps }) {
|
---|
7 | return (
|
---|
8 | <Provider store={store}>
|
---|
9 | <Component {...pageProps} />
|
---|
10 | </Provider>
|
---|
11 | )
|
---|
12 | }
|
---|
13 |
|
---|
14 | export default MyApp
|
---|
Note:
See
TracBrowser
for help on using the repository browser.