| 6 | } |
| 7 | |
| 8 | export interface Container<Value, State = void> { |
| 9 | Provider: React.ComponentType<ContainerProviderProps<State>> |
| 10 | useContainer: () => Value |
| 11 | } |
| 12 | |
| 13 | export function createContainer<Value, State = void>( |
| 14 | useHook: (initialState?: State) => Value, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…