mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
21 lines
292 B
JavaScript
21 lines
292 B
JavaScript
|
import React from 'react'
|
||
|
import Link from 'next/link'
|
||
|
|
||
|
const styles = {
|
||
|
a: {
|
||
|
marginRight: 10
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default () => (
|
||
|
<div>
|
||
|
<Link href='/'>
|
||
|
<a style={styles.a} >Home</a>
|
||
|
</Link>
|
||
|
|
||
|
<Link href='/about'>
|
||
|
<a style={styles.a} >About</a>
|
||
|
</Link>
|
||
|
</div>
|
||
|
)
|