记一次Typescript+react的match的坑

本秂侑毒 提交于 2020-01-20 12:06:00
 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
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!