Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const {Component, store, pageProps, apolloClient} = this.props;
return (
{/* I can't use material-ui Layout (PageContainer) in _app.js */}
{/* FIXME: https://github.com/zeit/next.js/pull/4288 */}
);
}
}
export default withRedux(createStore)(
compose(
withApollo,
withIntl,
withMaterialUi,
)(AldaApp),
);