link
-
React- Router Link ComponentReact/Router 2021. 6. 5. 19:33
Link Component React에서 a태그 사용 시 원치 않은 결과를 가져옴 React App에서 페이지 이동 시 react-router-dom 에서 제공하는 Link 컴포넌트 사용 a 태그의 href 대신 Link 컴포넌트에서는 to props 사용 // App.js import Links from './components/Links'; function App() { return ( ); } // Links.jsx import { Link } from 'react-router-dom'; export default function Links() { return ( Home Profile Profile/1 About About?name=msko ); } NavLink Component import {..