天天看點

react18-學習筆記23-第一個元件ts

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      
00