history.push
can i use history.push("/customroute',{data:"something"}) in refine and i want to access that in using useLocation hook in that route
5 Replies
correct-apricotOP•3y ago
please share documentation of useParam?
absent-sapphire•3y ago
Hi @rehan1 , sorry for late response.
i will create example for you
correct-apricotOP•3y ago
okay thanks
absent-sapphire•3y ago
you can use
useNavigate
from @pankod/refine-react-router-v6
https://reactrouter.com/en/6.5.0/hooks/use-navigate
navigate
takes state object as a second argument. you can read from other page with useLocation()
's returning state object
correct-apricotOP•3y ago
thanks