| 1 | import React from "react" |
| 2 | |
| 3 | export interface ContainerProviderProps<State = void> { |
| 4 | initialState?: State |
| 5 | children: React.ReactNode |
| 6 | } |
| 7 | |
| 8 | export interface Container<Value, State = void> { |
| 9 | Provider: React.ComponentType<ContainerProviderProps<State>> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…