Reputation: 373
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.
Here is my package.json with the types dependencies and the @types in the node_modules folder.
Finally, my configs
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
Reputation: 11146
Your routes
file has a .ts
extension but should be .tsx
if it contains JSX.
Upvotes: 5