"react-router-dom": "^6.3.0" 기준 $ npx create-react-app 프로젝트명 $ yarn add react-router-dom Router 를 사용하기 위해 두개의 페이지를 만들어주자 components> Home.js import React from "react"; function Home() { return ( 홈 이곳은 홈이에요. 제 집이죠 ); }; export default Home; About.js import React from "react"; function About () { return ( 소개 리액트 라우터를 연습해보자 ); } ; export default About; src > Router.js 생성 (위치는 마음대로지만ㅇㅇ..) import Rea..