(영문) React Router is a tool that allows you to handle routes.
React Router introduces a concept called “Dynamic Routing”, which is quite different from the “Static Routing” we are used to.
정적 라우팅으로 특정 주소를 지정해 놓을 수 있습니다. 하지만, 페이지가 많아 진다고 한다면, 모든 페이지를 코드로 만들어 정적 라우팅으로 지정하기에는 너무 불편함.
When you’re dealing with “Static Routing” you declare your routes as part of your app’s initialisation before any rendering takes place (Rails, Express, Ember, Angular, and so on).
동적 라우팅은 변하는 주소에 따라서 그에 맞는 페이지를 로드해 줍니다. 변수를 이용해서 동적 라우팅을 실행함.
“Dynamic Routing” means that routing takes place as your app is rendering, not in a configuration or convention outside of a running app.