Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

passing state in link react

import { useNavigate } from "react-router-dom";
const history = useNavigate();

history('/send-message', {state: 'data'});


import { useLocation } from "react-router-dom";
const location = useLocation();

console.log(location.state);
 
PREVIOUS NEXT
Tagged: #passing #state #link #react
ADD COMMENT
Topic
Name
8+6 =