ohif-viewer/src/WhiteLabellingContext.js
2019-04-15 16:44:36 -04:00

11 lines
261 B
JavaScript

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