How can I define a route in my routes.jsx file to capture the __firebase_request_key parameter value from a URL generated by Twitter\'s single sign on process a
__firebase_request_key
React Router v5.1 introduced hooks:
For
You can access params / id with hook:
const { id } = useParams();
More here.