useState<T> function

T useState<T>(
  1. T initialValue
)

Implementation

T useState<T>(T initialValue) {
  return initialValue;
}