试试这个:
import { Switch, Route } from 'react-router-dom'; <Switch> <Route path='/dashboard' component={Nav} /> <Route path='/retrospectives' component={Nav} /> <Route path='/users' component={Nav} /> <Route path='/projects' component={Nav} /> <Route path="" component={NotFound} /> </Switch>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)