记一次Typescript+react的match的坑
Posted ywenhao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记一次Typescript+react的match的坑相关的知识,希望对你有一定的参考价值。
1 import React from "react"; 2 import { match } from ‘react-router-dom‘ 3 4 interface Props { 5 match: match<{id?: string}> 6 } 7 8 const Rdx: React.FC<Props> = ({ match }: Props) => { 9 const id = match.params.id; 10 return ( 11 <div> 12 我是Rdx页面,id是 {id} 13 </div> 14 ); 15 } 16 export default Rdx
以上是关于记一次Typescript+react的match的坑的主要内容,如果未能解决你的问题,请参考以下文章
记一次antlr错误:ANTLR Tool version 4.5.3 used for code generation does not match the current runtime vers