I am try to get a query string from a URL but am getting an error. I am using a reactjs project created with Shopify-CLI. I have tried the examples on https://ui.dev/react-router-v4-query-strings/ https://ui.dev/react-router-v5-query-strings/
TypeError: Cannot read property 'params' of undefined
import React, { Component } from "react";
class Users extends Component {
  render() {
const { id } = this.props.match.params;
return (
  <div>
    <h1>User id is {id}</h1>
  </div>
);
}  
}
export default Users;
 
     
    