본문 바로가기

Study/Next.js

Next.js next/Link

 

in React

import { Link } from "react-router-dom";

<Link to="/signup">회원가입</Link>

 

 

in Next

import Link from "next/link";

<Link href="/signup">회원가입</Link>