Next.js - Layout component
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Link from 'next/link' | |
import Head from 'next/head' | |
export default class Layout extends React.Component { | |
componentDidMount() { | |
console.log('mount'); | |
} | |
componentWillUnmount() { | |
console.log('unmount'); | |
} | |
render() { | |
const { children, title = 'This is the default title' } = this.props; | |
return ( | |
<div> | |
<Head> | |
<title>{ title }</title> | |
<meta charSet='utf-8' /> | |
<meta name='viewport' content='initial-scale=1.0, width=device-width' /> | |
</Head> | |
<header> | |
<nav> | |
<Link href='/'><a>Home</a></Link> | | |
<Link href='/about'><a>About</a></Link> | | |
<Link href='/contact'><a>Contact</a></Link> | |
</nav> | |
</header> | |
{ children } | |
<footer> | |
{'I`m here to stay'} | |
</footer> | |
</div> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment