
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