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

NEXTJS Reference: Routing

Quick reference for Routing.

Read time: 1 min Words: 14
My Progress

NEXTJS Reference — Routing

Quick summary of Routing with syntax and example.

Syntax

export default function Page(){}

Example

export default function Page(){
  return <main><h1>Hello Next.js</h1></main>;
}