Skip to content

Instantly share code, notes, and snippets.

@Kola92
Last active February 21, 2023 14:27
Show Gist options
  • Save Kola92/e2bc879a11b97fe4913c29c6377ff501 to your computer and use it in GitHub Desktop.
Save Kola92/e2bc879a11b97fe4913c29c6377ff501 to your computer and use it in GitHub Desktop.
Next.js 13 Page.js file
// app/page.js directory
// `app/page.js` is the UI for the root `/` URL
export default function Page() {
return <h1>Hello, Next.js!</h1>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment