gpt4 book ai didi

reactjs - 尝试使用 React Router v6 : Attempted import error: 'Action' is not exported from 'history' 时出错

转载 作者:行者123 更新时间:2023-12-03 15:27:20 26 4
gpt4 key购买 nike

我使用创建了一个新的 react 应用程序

npx create-react-app app-name
然后我将目录更改为该应用程序文件夹,然后运行以下命令。
npm install react-router@next react-router-dom@next
然后我运行了我的应用程序,它运行良好。然后我改了默认代码,使用了Routes、Route等,这里是APP代码
import React from 'react';
import {BrowserRouter as Router, Routes, Route} from "react-router-dom"

function App() {
return (
<Router>
<Routes>
<Route path="/" element={<Home />} />
</Routes>
</Router>
);
}

function Home()
{
return <div>
<h1>Home</h1>
</div>
}

export default App;
我收到错误:
Attempted import error: 'Action' is not exported from 'history'.
错误路径为:
./node_modules/react-router/index.js
知道它有什么问题吗?

最佳答案

您需要安装另一个名为 history 的软件包。 .做 npm i history .
更多信息 here

关于reactjs - 尝试使用 React Router v6 : Attempted import error: 'Action' is not exported from 'history' 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63071718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com