Where can I find types for react-router-dom Location, History and Match?

Viewed 6422
1 Answers
import { History, Location } from 'history';
import {match} from 'react-router';

You can check out @types/react-router. There you can see all the types defined and imported from @types/history.

Related