原文链接:https://bobbyhadz.com/blog/react-typescript-usestate-empty-object[1]
作者:Borislav Hadzhiev[2]
正文从这开始~
将useState作为字符串数组
要在React中用一个字符串数组来类型声明useState钩子,可以使用钩子泛型。比如说,const [names, setNames] = useState<string[]>([])
。state变量可以被初始化为一个空数组,或者只接收字符串值的字符串数组。
// App.tsx
import {useState} from 'react';
const App = () => {
//