Module '"react-router-dom"' has no exported member 'RouteComponentProps'.
时间: 2024-01-10 17:01:50
浏览: 255
The error you are encountering is likely due to a mismatch between the [version](https://wenku.csdn.net/doc/6412b4e5be7fbd1778d41342?spm=1055.2569.3001.10083&kwd=version) of `[react](https://wenku.csdn.net/doc/84n9baomax?spm=1055.2569.3001.10083&kwd=react)-router-dom` you are using and the version of TypeScript you have installed.
In older versions of `react-router-dom`, the type `RouteComponentProps` was exported directly from the [library](https://wenku.csdn.net/doc/6412b775be7fbd1778d4a5f6?spm=1055.2569.3001.10083&kwd=library). However, in newer versions, it is exported from the `react-router` package instead.
To resolve this issue, you can [update](https://wenku.csdn.net/doc/6401abcacce7214c316e9829?spm=1055.2569.3001.10083&kwd=update) your import statement to [reference](https://wenku.csdn.net/doc/6412b6d4be7fbd1778d4820e?spm=1055.2569.3001.10083&kwd=reference) `react-router` instead of `react-router-dom` and import `RouteComponentProps` from there.
Here's an example of how you can update your import statement:
```typescript
import { RouteComponentProps } from 'react-router';
Make sure you have the latest version
最低
0.47元/天
开通会员,查看完整答案

成为会员后, 你将解锁


相关推荐














