programming

Javascript/Typescript ReactNative Tech

【ReactNative】useStateの型指定の仕方(Typescript)

useStateの型指定を毎度忘れるので、備忘録もかねて残しておきます。

useState<指定したい型>(初期値);

例えば、string or undefinedを型として指定したい場合は次の通り。

const [name, setName] = useState<string|undefined>('');

-Javascript/Typescript, ReactNative, Tech