interface PersonProps { name: string; age: number; hobbies: Array<string>; isCool: boolean; } // Boolean type const [isCool] = React.useState<boolean>(true); // ...
確定! 回上一頁