Since state is inferred from multiple sources (interface, updating state and getting state in any method), it should be deduplicated before creating calls.
Result:
const [things, setThings] = useState<Things | undefined>();
const [things, setThings] = useState<Things | undefined>();
Since state is inferred from multiple sources (interface, updating state and getting state in any method), it should be deduplicated before creating calls.
Result: