// import globals import { version } from './globals'; // import all custom styles import './Style/App.less'; // import core-js to standardize the ECMAScript api across browsers import 'core-js'; // apply augmentations import './types/augmentations'; // import extensions import './Extensions'; import { getLogger } from './Utils/Logging'; // inform the user which version we are using getLogger('webrx-react').info(`Initializing webrx-react (v${version})`); // import webrx-react helper submodules import * as Events from './Events'; import { Alert, Compare, Logging, Moment, PubSub } from './Utils'; // import WebRx framework import * as wx from './WebRx'; // import webrx-react framework submodules import * as Components from './Components'; import * as Routing from './Routing'; import * as Stores from './Stores'; // export everything export { version, wx, Logging, PubSub, Alert, Compare, Moment }; export { Events, Routing, Stores, Components };