2021-07-13 23:48:16 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
2021-07-21 13:16:50 +02:00
|
|
|
import classnames from 'classnames';
|
|
|
|
|
import moment from 'moment';
|
2021-07-13 23:48:16 +02:00
|
|
|
import * as ui from '@ohif/ui';
|
2021-07-21 13:16:50 +02:00
|
|
|
import utils from '../../utils/';
|
2021-07-13 23:48:16 +02:00
|
|
|
|
|
|
|
|
// Add react-live imports you need here
|
|
|
|
|
const ReactLiveScope = {
|
|
|
|
|
React,
|
|
|
|
|
...React,
|
|
|
|
|
...ui,
|
2021-07-21 13:16:50 +02:00
|
|
|
classnames,
|
|
|
|
|
utils,
|
|
|
|
|
moment,
|
2021-07-13 23:48:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default ReactLiveScope;
|