index.ts 434 B

1234567891011121314151617
  1. /**
  2. * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. import { createPlugin, DefaultPluginSpec } from 'mol-plugin';
  7. import './index.html'
  8. require('mol-plugin/skin/light.scss')
  9. createPlugin(document.getElementById('app')!, {
  10. ...DefaultPluginSpec,
  11. initialLayout: {
  12. isExpanded: true,
  13. showControls: true
  14. }
  15. });