ohif-viewer/Packages-react/ohif-viewer/src/WhiteLabellingContext.js

10 lines
234 B
JavaScript
Raw Normal View History

import OHIFLogo from './components/OHIFLogo/OHIFLogo.js';
const defaultContextValues = {
logoComponent: OHIFLogo()
};
const WhiteLabellingContext = React.createContext(defaultContextValues);
export default WhiteLabellingContext;