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
You also can use react-location-query package, example:
const [name, setName] = useLocationField("name", {
type: "string",
initial: "Rostyslav"
});
return (
Hello {name}
setName(e.target.value)} />
);
name - to get value setName = to set value
This package has many options, read more in docs on Github