Skip to content

Instantly share code, notes, and snippets.

@thisismydesign
Last active September 6, 2023 12:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thisismydesign/7eb8a71fb999cde74d82b44ba1fda70b to your computer and use it in GitHub Desktop.
Save thisismydesign/7eb8a71fb999cde74d82b44ba1fda70b to your computer and use it in GitHub Desktop.
NestJS + Next.js /3 Home page
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