问问题
88 次
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 回答