Skip to content

Instantly share code, notes, and snippets.

@romanejaquez
Created August 18, 2020 04:43
Show Gist options
  • Save romanejaquez/b0f034dad2c0db3722dc5c55a7a02c5a to your computer and use it in GitHub Desktop.
Save romanejaquez/b0f034dad2c0db3722dc5c55a7a02c5a to your computer and use it in GitHub Desktop.
import { BrowserModule } from "@angular/platform-browser";
import { AppRoutingModule } from "./../app/app.routing.module";
import { NgModule } from "@angular/core";
import { AppComponent } from "./app.component";
import { SplashScreenComponent } from "./../app/components/splash-screen.component";
import { HomeComponent } from "./../app/home/home.component";
@NgModule({
declarations: [AppComponent, SplashScreenComponent, HomeComponent],
imports: [BrowserModule, AppRoutingModule],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment