Created
December 16, 2019 15:24
-
-
Save actarian/ac9d469cfd50a87adea72bdb61a105b4 to your computer and use it in GitHub Desktop.
RxComp - AppModule
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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