ng-pokemon-app/src/app/app.module.ts

16 lines
552 B
TypeScript
Raw Normal View History

2023-02-22 13:12:40 +00:00
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
2023-02-24 13:54:17 +00:00
import { PageNotFoundComponent } from './page-not-found/page-not-found.component';
import { PokemonModule } from './pokemon/pokemon.module';
2023-02-22 13:12:40 +00:00
@NgModule({
2023-02-24 13:54:17 +00:00
declarations: [AppComponent, PageNotFoundComponent],
imports: [BrowserModule, PokemonModule, AppRoutingModule],
2023-02-22 13:12:40 +00:00
providers: [],
bootstrap: [AppComponent],
2023-02-22 13:12:40 +00:00
})
export class AppModule {}