Skip to content

Instantly share code, notes, and snippets.

@actarian
Created December 16, 2019 15:24
Show Gist options
  • Save actarian/ac9d469cfd50a87adea72bdb61a105b4 to your computer and use it in GitHub Desktop.
Save actarian/ac9d469cfd50a87adea72bdb61a105b4 to your computer and use it in GitHub Desktop.
RxComp - AppModule
import { Browser, CoreModule, Module } from 'rxcomp';
export default class AppModule extends Module {}
AppModule.meta = {
imports: [
CoreModule
],
declarations: [
TodoItemComponent,
DatePipe,
],
bootstrap: AppComponent,
};
Browser.bootstrap(AppModule);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment