Created
January 27, 2023 05:05
-
-
Save shameemreza/a662be4cdb24ccc435d9c4fb677e0840 to your computer and use it in GitHub Desktop.
Example for Mastering the Art of Server-Side Rendering with Next.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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