rsnext/examples/with-redux-wrapper/pages/_app.js
Kirill Konshin 65f0574c16
Update with-redux-wrapper example (#13649)
Follow up for #11802

Makes sure app is not opted out of Automatic Static Optimization.
2020-06-02 00:13:38 +00:00

7 lines
179 B
JavaScript

import { wrapper } from '../store/store'
const WrappedApp = ({ Component, pageProps }) => {
return <Component {...pageProps} />
}
export default wrapper.withRedux(WrappedApp)