1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/shared-modules/components/Header.js

20 lines
264 B
JavaScript
Raw Normal View History

import Link from 'next/link'
export default () => (
<div>
<Link href='/'>
<a style={styles.a}>Home</a>
</Link>
<Link href='/about'>
<a style={styles.a}>About</a>
</Link>
</div>
)
2016-12-20 20:36:30 +00:00
const styles = {
a: {
marginRight: 10
}
}