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