最佳答案
在我的 React 容器/组件中,我可以使用哪种类型来引用 React 路由器 DOM 包含的 match
部分?
interface Props {
match: any // <= What could I use here instead of any?
}
export class ProductContainer extends React.Component<Props> {
// ...
}