码迷,mamicode.com
首页 > 其他好文 > 详细

记一次Typescript+react的match的坑

时间:2020-01-20 13:11:26      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:style   class   reac   script   ams   esc   dom   match   port   

 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的坑

标签:style   class   reac   script   ams   esc   dom   match   port   

原文地址:https://www.cnblogs.com/ywenhao/p/12217334.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!