React Props with Type. Basic. interface Props { text: string; } const Banner = ({ text }: Props) => { return <h1>Hello, {text}</h1>; } ...
確定! 回上一頁