All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.react.useReducer.kt Maven / Gradle / Ivy

@file:JsModule("react")
@file:JsNonModule

package react

/**
 * Only works inside [fc]
 * @see Hooks and Function Components
 */
external fun  useReducer(
    reducer: Reducer,
    initializerArg: I,
    initializer: (I) -> S,
): ReducerInstance

/**
 * Only works inside [fc]
 * @see Hooks and Function Components
 */
external fun  useReducer(
    reducer: Reducer,
    initialState: S,
): ReducerInstance

/**
 * Only works inside [fc]
 * @see Hooks and Function Components
 */
external fun  useReducer(
    reducer: Reducer,
): ReducerInstance




© 2015 - 2025 Weber Informatics LLC | Privacy Policy