react query params from url code example
Example 1: react parameter value from query string
import queryString from 'query-string'
const value=queryString.parse(this.props.location.search);
const token=value.token;
console.log('token',token)
const query = new URLSearchParams(this.props.location.search);
const token = query.get('token')
console.log(token)
const getQueryParams = () => window.location.search.replace('?', '').split('&').reduce((r,e) => (r[e.split('=')[0]] = decodeURIComponent(e.split('=')[1]), r), {});
Example 2: reactjs get url query params as object
new URLSearchParams(location.search).get("your_query_param_key")
______________________________________
if(location && location?.search?.includes("registration_token")){
const emailValue = new URLSearchParams(location.search).get("email")
const regTokenValue = new URLSearchParams(location.search).get("registration_token")
setValue("email", emailValue)
setValue("registration_token", regTokenValue)
console.log(regTokenValue, emailValue);
}