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