
main.react.useState.kt Maven / Gradle / Ivy
@file:JsModule("react")
@file:JsNonModule
package react
/**
* Only works inside [fc]
* @see Hooks and Function Components
*/
external fun useState(): StateInstance
/**
* Only works inside [fc]
* @see Hooks and Function Components
*/
external fun useState(
initialValue: T,
): StateInstance
/**
* Only works inside [fc]
* @see Hooks and Function Components
*/
external fun useState(
initializer: () -> T,
): StateInstance
© 2015 - 2025 Weber Informatics LLC | Privacy Policy