关于typescript:React18-FC-props没有children类型问题

42次阅读

共计 91 个字符,预计需要花费 1 分钟才能阅读完成。

import type {FC, PropsWithChildren} from 'react';


export type FsFC<T = any> = FC<PropsWithChildren<T>>;

正文完
 0