Created
August 18, 2020 04:43
-
-
Save romanejaquez/b0f034dad2c0db3722dc5c55a7a02c5a to your computer and use it in GitHub Desktop.
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 { 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