Skip to content

Instantly share code, notes, and snippets.

@donedgardo
Created February 8, 2017 19:33
Show Gist options
  • Save donedgardo/40615122d25a873b7b383c0ad6f334bd to your computer and use it in GitHub Desktop.
Save donedgardo/40615122d25a873b7b383c0ad6f334bd to your computer and use it in GitHub Desktop.
Next vs Meteor Article
// pages/index.js
import Link from 'next/link'
export default () => (
<div>Click <Link href="/about"><a>here</a></Link> to read more</div>
)
// pages/about.js
export default () => (
<p>Welcome to About!</p>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment