react-router-dom with TypeScript react-router-dom with TypeScript reactjs reactjs

react-router-dom with TypeScript


I use a different approach to fix this. I always separate the different properties (router, regular and dispatch), so I define the following interfaces for my component:

interface HomeRouterProps {  title: string;   // This one is coming from the router}interface HomeProps extends RouteComponentProps<HomeRouterProps> {  // Add your regular properties here}interface HomeDispatchProps {  // Add your dispatcher properties here}

You can now either create a new type that combines all properties in a single type, but I always combine the types during the component definition (I don't add the state here, but if you need one just go ahead). The component definition looks like this:

class Home extends React.Component<HomeProps & HomeDispatchProps> {  constructor(props: HomeProps & HomeDispatchProps) {    super(props);  }  public render() {    return (<span>{this.props.match.params.title}</span>);  }}

Now we need to wire the component to the state via a container. It looks like this:

function mapStateToProps(state, ownProps: HomeProps): HomeProps => {  // Map state to props (add the properties after the spread)  return { ...ownProps };}function mapDispatchToProps(dispatch): HomeDispatchProps {  // Map dispatch to props  return {};}export default connect(mapStateToProps, mapDispatchToProps)(Hello);

This method allows a fully typed connection, so the component and container are fully typed and it is safe to refactor it. The only thing that isn't safe for refactoring is the parameter in the route that is mapped to the HomeRouterProps interface.


I think it is a typescript typings compilation issue, but I've found a workaround:

interface HomeProps extends RouteComponentProps<any>, React.Props<any> {}


It looks like you have the right usage to apply the match, history, and location props to your component. I would check in your node_modules directory to see what versions of react-router and react-router-dom you have, as well as the @types modules.

I have essentially the same code as you, and mine is working with the following versions:

{  "@types/react-router-dom": "^4.0.4",  "react-router-dom": "^4.1.1",}