Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import Head from 'next/head'
  2.  
  3. export default (props) => (
  4. <div>
  5. <Head>
  6. <title>{props.title}</title>
  7. </Head>
  8. <>
  9. {props.content}
  10. </>
  11. <aside>
  12. <div>Layout by props (pass content components as custom props)</div>
  13. </aside>
  14. </div>
  15. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement