Benoit
Benoit

Reputation: 373

Typescript 2 types with react-router, cannot find name path, component

Screenshots kind of speak for themselves, first this is my routes file where the problem occur, you can see the unused import and path and component not being found.

enter image description here

Here is my package.json with the types dependencies and the @types in the node_modules folder.

enter image description here

Finally, my configs

enter image description here enter image description here

I cannot get where is the problem here, anyone got something similar?

Note that I've been able to use <Router history={browserHistory} routes={routes} /> and react and redux object in the app without problems.

Upvotes: 4

Views: 3687

Answers (1)

Joeri Sebrechts
Joeri Sebrechts

Reputation: 11146

Your routes file has a .ts extension but should be .tsx if it contains JSX.

Upvotes: 5

Related Questions