Q:

get query params react

const Child = ({ match }) => (
  <div>
    <h3>ID: {match.params.id}</h3>
  </div>
)
3
 const query = new URLSearchParams(this.props.location.search);

const token = query.get('token')
console.log(token)//123
1
new URLSearchParams(this.props.location.search).get("your_query_param_key")
1

New to Communities?

Join the community