Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created January 27, 2023 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shameemreza/49cfbae16f0e5b3bc743a4110de8c9a8 to your computer and use it in GitHub Desktop.
Save shameemreza/49cfbae16f0e5b3bc743a4110de8c9a8 to your computer and use it in GitHub Desktop.
Example of Mastering the Art of Server-Side Rendering with Next.js
import Link from 'next/link'
const Home = () => {
return (
<div>
<Link href="/about">
<a>About</a>
</Link>
</div>
)
}
export default Home
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment