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/using-inferno/pages/index.js
2017-02-25 15:54:42 +01:00

7 lines
156 B
JavaScript

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