Guest User

Untitled

a guest
Jan 23rd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. import { Location, LocationState } from 'history';
  2. import { RouteComponentProps as ReactRouteComponentProps } from 'react-router-dom'
  3.  
  4. export interface RouteComponentProps<Q = { [key: string]: string }> extends ReactRouteComponentProps {
  5. location: Location<LocationState> & {
  6. query: Q
  7. };
  8. }
Add Comment
Please, Sign In to add comment