10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
|
|
import OHIFLogo from './components/OHIFLogo/OHIFLogo.js';
|
||
|
|
|
||
|
|
const defaultContextValues = {
|
||
|
|
logoComponent: OHIFLogo()
|
||
|
|
};
|
||
|
|
|
||
|
|
const WhiteLabellingContext = React.createContext(defaultContextValues);
|
||
|
|
|
||
|
|
export default WhiteLabellingContext;
|