useState

fun <T> useState(initialValue: T, factory: (T) -> MutableState<T> = { mutableStateOf(it) }): MutableState<T>