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