[React] 링크로 페이지들 간에 이동하기

ryeoni·2023년 3월 25일

React

목록 보기
7/9

<a></a><Link></Link>
새로고침OX
HTTPOX
페이지 전환 방법서버에 HTTP 요청해서 페이지를 전환하고 모든 JS 코드를 다시 로드함라우트 정의를 확인하여 페이지를 업데이트하고 필요한 부분만 로드함

코드


a 태그


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

function HomePage() {
  return (
    <>
      <h1>My Home Page</h1>
      <p>
        Go to <a fref="/products">the list of products</a>.
      </p>
    </>
  );
}

export default HomePage;


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

function HomePage() {
  return (
    <>
      <h1>My Home Page</h1>
      <p>
        Go to <Link to="/products">the list of products</Link>.
      </p>
    </>
  );
}

export default HomePage;

참고

【한글자막】 React 완벽 가이드 with Redux, Next.js, TypeScript

profile
기록하는 습관 ✏️ 공유하고 싶은 정보들 🔎

0개의 댓글