React Router
React Router is a third-party library that allow components to be used as routed endpoints on an application. This library comes in three packages:
react-router
: For core functionalityreact-router-native
: React Native versionreact-router-dom
: Recommended for web applications
npm install react-router-dom
<Link>
컴포넌트 사용하는 방법
<Link to="/signup">회원가입</Link>
withRouterHOC
로 구현하는 방법
this.props.history.push('/signup')