Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created January 27, 2023 05:05
Embed
What would you like to do?
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