Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created September 10, 2019 18:03
Show Gist options
  • Save sibelius/e6854f65aaed36ea7472c232cdb33340 to your computer and use it in GitHub Desktop.
Save sibelius/e6854f65aaed36ea7472c232cdb33340 to your computer and use it in GitHub Desktop.
useRouter hook for react-router-dom
import { useContext } from 'react';
import { __RouterContext, RouteComponentProps } from 'react-router-dom';
export const useRouter = <TParams = {}>() => {
return useContext(__RouterContext) as RouteComponentProps<TParams>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment