Created
May 7, 2020 08:35
-
-
Save ayoisaiah/da62ffe8d482073242d014a5e7af3ed1 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
// src/app.module.ts | |
import { BrowserModule } from '@angular/platform-browser'; | |
import { NgModule } from '@angular/core'; | |
import { AppComponent } from './app.component'; | |
import { NoopAnimationsModule } from '@angular/platform-browser/animations'; | |
import { NbThemeModule, NbChatModule, NbLayoutModule } from '@nebular/theme'; | |
import { NbEvaIconsModule } from '@nebular/eva-icons'; | |
import { AppRoutingModule } from './app-routing.module'; | |
@NgModule({ | |
declarations: [AppComponent], | |
imports: [ | |
BrowserModule, | |
NoopAnimationsModule, | |
NbChatModule, | |
NbThemeModule.forRoot({ name: 'default' }), | |
NbLayoutModule, | |
NbEvaIconsModule, | |
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