我是因为使用了
import { Switch } from 'react-router-dom'
import { Route } from 'react-router'
import HomePage from './HomePage'
const routes = [
{
path: '/homepage',
component: HomePage,
exact: true
},
]
const routeConfig = () => {
return (
<Switch>
{
routes.map(item => {
return <Route key={item.path} path={item.path} component={item.component} exact={item.exact} />
})
}
</Switch>
)
}
把import { Switch } from 'react-router-dom'
和import { Route } from 'react-router'
改成=>import { Switch, Route } from 'react-router-dom'