rsnext/examples/hello-world/pages/index.js
2016-12-20 12:34:42 -08:00

4 lines
113 B
JavaScript

import Link from 'next/link'
export default () => (
<div>Hello World. <Link href='/about'>About</Link></div>
)