/routing.js Secret
Created
May 3, 2022 09:06
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//react routing | |
import {BrowseRouter as Router, Switch, Route} from 'react-router-dom' | |
export default function App(){ | |
<Router> //일단 라우팅 되는 부분을 감싸준다 | |
<Switch> //Switch는 안에있는 여러가지 Router중에서 조건에 만족하는 첫번째 Router를 불러온다. | |
<Route exact path = "/taewoongmoon"/ > | |
<Route exact path = "/" /> // 이렇게 / 하나만 쓰면 index.js 메인페이지를 불러온다. | |
<Route exact path = "/iwanttogohome" /> | |
<Route exact path = "" /> | |
</Switch> | |
</Router> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment