-2

检查代码,找不到我需要放置分号的位置。这是错误。这是代码

4

2 回答 2

1

应该是这样的

const Routes = (props) => ( ... )
于 2021-12-08T11:39:22.573 回答
0

应该是这样的

const PropsPage = () => {  return (    <h3>Props Page</h3>  );};

为一个

const App = () => {
  return (
    <section className="App">
      <Router>
        ...
        <Link to="/404-not-found">404</Link>
        <Link to="/props">Passing Props</Link>        <Switch>
          ...
          <Route exact path="/props" component={PropsPage} />          <Route component={NoMatchPage} />
        </Switch>
      </Router>
      <a href="/about">about with browser reload</a>
    </section>
  );
};

在 Route 组件中将函数作为组件 props 传递

const PropsPage = ({ title }) => {
  return (
    <h3>{title}</h3>
  );
};
于 2021-12-08T11:43:40.523 回答