in React
import { Link } from "react-router-dom";
<Link to="/signup">회원가입</Link>
in Next
import Link from "next/link";
<Link href="/signup">회원가입</Link>
'Study > Next.js' 카테고리의 다른 글
[Next.js] svg component in Next (1) | 2023.01.05 |
---|---|
[Next.js] Styled-Components in Next (0) | 2023.01.05 |
Next.js ImageComponent 사용하기 (0) | 2023.01.05 |
Next.js styled-components compile error 해결 (0) | 2023.01.05 |
Next.js Link Error 해결 - Warning: Function components cannot be given refs. Attempts to access this ref will fail. Did you mean to use React.forwardRef()? (1) | 2022.12.28 |