Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created January 27, 2023 05:05
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/a662be4cdb24ccc435d9c4fb677e0840 to your computer and use it in GitHub Desktop.
Save shameemreza/a662be4cdb24ccc435d9c4fb677e0840 to your computer and use it in GitHub Desktop.
Example for Mastering the Art of Server-Side Rendering with Next.js
import React from 'react'
const About = () => {
return (
<div>
<h1>About Our App</h1>
<p>Our app is the best thing since sliced bread.</p>
</div>
)
}
export default About
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment