Guest User

Untitled

a guest
May 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. /* imports */
  2.  
  3. class MyApp extends App {
  4. render() {
  5. const {Component, pageProps} = this.props
  6. return (
  7. <Container>
  8. <Page>
  9. <Component {...pageProps} />
  10. </Page>
  11. </Container>
  12. )
  13. }
  14. }
  15.  
  16. // use the PageWrapper only once!
  17. export default PageWrapper(MyApp)
Add Comment
Please, Sign In to add comment