Sky.Net/client/src/app/app.module.ts

25 lines
665 B
TypeScript
Raw Normal View History

2022-05-12 11:53:03 -07:00
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
2022-05-12 15:07:23 -07:00
import { HttpClientModule } from '@angular/common/http';
2022-05-12 11:53:03 -07:00
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2022-05-12 15:07:23 -07:00
import { NavBarComponent } from './nav-bar/nav-bar.component';
2022-05-12 11:53:03 -07:00
@NgModule({
declarations: [
2022-05-12 15:07:23 -07:00
AppComponent,
NavBarComponent
2022-05-12 11:53:03 -07:00
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
2022-05-12 15:07:23 -07:00
HttpClientModule
2022-05-12 11:53:03 -07:00
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }