choigirang / portfolio

포트폴리오 v1
https://v1.choigirang-portfolio.site
0 stars 0 forks source link

Header: 새로고침 시 라우터 동적으로 받아오기 #5

Open choigirang opened 8 months ago

choigirang commented 8 months ago
const [activeSection, setActiveSection] = useState("Home")
choigirang commented 8 months ago
const curPath = window.location.pathname;

return (
  ...
  <Tabs value={curPath !== "/" ? curPath ? "/Home"}>
  ...
  </Tabs>
)