Skip to content

Commit

Permalink
Revomes deprecated Container component
Browse files Browse the repository at this point in the history
  • Loading branch information
agnlez committed Oct 11, 2019
1 parent 818c1bd commit 17f686d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import App, { Container } from 'next/app';
import App from 'next/app';
import React from 'react';
import { Provider } from 'react-redux';
import withRedux from 'next-redux-wrapper';
Expand Down Expand Up @@ -88,11 +88,9 @@ class RWApp extends App {
} = this.props;

return (
<Container>
<Provider store={store}>
<Component {...pageProps} />
</Provider>
</Container>
<Provider store={store}>
<Component {...pageProps} />
</Provider>
);
}
}
Expand Down

0 comments on commit 17f686d

Please sign in to comment.