DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

NEXTJS Reference: Next.js Introduction

Quick reference for Next.js Introduction.

Read time: 1 min • Words: 16
My Progress

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>;
}