Qandi

Results 2 comments of Qandi

> @Qandi430 could you please share your component code? thank your reply this is my code i was not use any options ``` 1 1 2 3 4 5 6...

react-router-dom v6 이상 쓰시는 분들은 useSearchParams 를 사용해 보세요 import { useSearchParams } from 'react-router-dom'; const [searchParams] = useSearchParams(); const detail = searchParams.get('detail') === 'true'; qs 없이 쿼리스트링을 편하게 가져올수...