UNPKG

use-selektor

Version:

Performantly extract specific data from complext react contexts

4 lines (3 loc) 243 B
import { Context } from 'react'; export type SelektorFunction<State, Selekted> = (state: State) => Selekted; export declare function useSelektor<State, Selekted>(selektor: SelektorFunction<State, Selekted>, context: Context<State>): Selekted;