index.tsx 377 B

12345678910111213
  1. /**
  2. * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. */
  6. import UI from './ui'
  7. import State from './state'
  8. import * as React from 'react'
  9. import * as ReactDOM from 'react-dom'
  10. const state = new State()
  11. ReactDOM.render(<UI state={state} />, document.getElementById('app'));