react18-学习笔记22-配置react



import React from "react";
interface IHelloProps{
message?:string;
}
const Hello:React.FunctionComponent<IHelloProps>=(props)=>{
return <h2>{props.message}</h2>
}
Hello.defaultProps={
message:"Hello Geyao"
}
export default Hello

浙公网安备 33010602011771号