| 5 | export const MobXProviderContext = React.createContext<IValueMap>({}) |
| 6 | |
| 7 | export interface ProviderProps extends IValueMap { |
| 8 | children: React.ReactNode |
| 9 | } |
| 10 | |
| 11 | export function Provider(props: ProviderProps) { |
| 12 | const { children, ...stores } = props |
nothing calls this directly
no outgoing calls
no test coverage detected