react 상세페이지 에러
본문
search.tsx에서 영화를 클릭했을때 상세페이지가 뜨지 않습니다ㅜ 다른페이지에서는 뜨는데 search페이지에서는 뜨지 않네요..
https://github.com/beom-jun-kim/beeflix
깃헙 주소입니다 !
답변 1
src/Routes/Search.tsx
const onBoxClicked = (videoId: any) => {
const currentPath = window.location.pathname;
const query = `?keyword=${keyword}`;
const path =
currentPath === "/"
? `/videos/${videoId}${query}`
: `${currentPath}/videos/${videoId}${query}`;
navigate(path);
};
답변을 작성하시기 전에 로그인 해주세요.