UNPKG

mobx-view-model

Version:
8 lines (7 loc) 275 B
import { createContext } from 'react'; /** * Context which contains the view models store instance. * This context is used to access the view models store inside the React components. * @see {@link ViewModelStore} */ export const ViewModelsContext = createContext(null);