mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
12 lines
290 B
JavaScript
12 lines
290 B
JavaScript
|
import Link from 'next/link'
|
||
|
|
||
|
export default ({ pathname }) =>
|
||
|
<header>
|
||
|
<Link href='/'>
|
||
|
<a className={pathname === '/' && 'is-active'}>Home</a>
|
||
|
</Link>{' '}
|
||
|
<Link href='/about'>
|
||
|
<a className={pathname === '/about' && 'is-active'}>About</a>
|
||
|
</Link>
|
||
|
</header>
|