import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { observable, toJS, reaction } from 'mobx'
import { observer } from 'mobx-react'
import { withTracker } from 'meteor/react-meteor-data'
import _ from 'lodash'
import uuidV1 from 'uuid/v1'
import moment from 'moment'
import store from '../../store/store.coffee'

window.React = React
window.PropTypes = PropTypes
window.Component = Component
window.observable = observable
window.toJS = toJS
window.observer = observer
window.withTracker = withTracker
window._ = _
window.store = store
window.uuid = uuidV1
window.moment = moment
window.reaction = reaction
