Last active
September 6, 2023 12:46
-
-
Save thisismydesign/7eb8a71fb999cde74d82b44ba1fda70b to your computer and use it in GitHub Desktop.
NestJS + Next.js /3 Home page
This file contains hidden or 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'; | |
import { NextPage } from 'next'; | |
const Home: NextPage = () => { | |
return <h1>Hello from NextJS! - Home</h1>; | |
}; | |
export default Home; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment