ohif-viewer/src/WhiteLabellingContext.js

11 lines
262 B
JavaScript
Raw Normal View History

import OHIFLogo from './components/OHIFLogo/OHIFLogo.js';
import React from 'react';
const defaultContextValues = {
2019-05-29 14:39:54 +02:00
logoComponent: OHIFLogo(),
};
const WhiteLabellingContext = React.createContext(defaultContextValues);
export default WhiteLabellingContext;