UNPKG

@rxdi/ui-components

Version:

UI Components for building graphql-server website

13 lines (10 loc) 338 B
import { Bootstrap } from '@rxdi/core'; import { AppModule } from './app/app.module'; window.addEventListener('load', () => { Bootstrap(AppModule, { init: false, }).subscribe(() => console.log('App Started!'), err => console.error(err)); }); if (module['hot']) { module['hot'].dispose(() => (document.body.innerHTML = '')); }