UNPKG

@sampettersson/constate

Version:

Yet another React state management library that lets you work with local state and scale up to global state with ease

7 lines (6 loc) 282 B
import * as React from "react"; import { ContainerProps } from "./types"; declare class Container<State, Actions = {}, Selectors = {}, Effects = {}> extends React.Component<ContainerProps<State, Actions, Selectors, Effects>> { render(): JSX.Element; } export default Container;