File size: 728 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
import React from 'react'
import { useRouter } from 'next/router'
import Link from 'next/link'
export const Header = () => {
const { pathname } = useRouter()
return (
<header>
<Link href="/" className={pathname === '/' ? 'is-active' : ''}>
Home
</Link>
<Link
href="/client-only"
className={pathname === '/client-only' ? 'is-active' : ''}
>
Client-Only
</Link>
<style jsx>{`
header {
margin-bottom: 25px;
}
a {
font-size: 14px;
margin-right: 15px;
text-decoration: none;
}
.is-active {
text-decoration: underline;
}
`}</style>
</header>
)
}
|