SetState TypeScript Typ
//Change string for the desired type
React.Dispatch<React.SetStateAction<string>>
Exuberant Eland
//Change string for the desired type
React.Dispatch<React.SetStateAction<string>>
interface Provider {
connected: boolean;
type: string;
}
const [wearablesList, setWearablesList] = useState<Provider[]>([]);