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}
*/exportconstViewModelsContext = createContext(null);