我有一段我看不懂的代码。任何解释表示赞赏。我的问题是(道具)实际上在这里做什么以及它来自哪里?如果我去掉“道具”,我的代码就无法工作。
<Route
exact
path='/'
render={(props) =>
!isAuthenticated ? (
<Landing {...props} />
) : (
<Redirect to='/admin' />
)
}
/>