Skip to content

Instantly share code, notes, and snippets.

@yhoon3002
Created May 3, 2022 09:06
//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