NEXTJS Reference: Next.js Introduction
Quick reference for Next.js Introduction.
NEXTJS Reference — Next.js Introduction
Quick summary of Next.js Introduction with syntax and example.
Syntax
export default function Page(){}
Example
export default function Page(){
return <main><h1>Hello Next.js</h1></main>;
}