Type Alias NativeReactHooks

type NativeReactHooks = {
    useEffect: Function;
    useState: <T>(initialValue: T | undefined) => [T, (value: T) => void];
}
Index

Properties

Properties

useEffect: Function
useState: <T>(initialValue: T | undefined) => [T, (value: T) => void]