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

17 lines
611 B
TypeScript
Raw Normal View History

2023-02-22 13:12:40 +00:00
import { NgModule } from '@angular/core';
2023-02-24 15:57:25 +00:00
import { FormsModule } from '@angular/forms';
2023-02-22 13:12:40 +00:00
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],
2023-02-24 15:57:25 +00:00
imports: [BrowserModule, FormsModule, PokemonModule, AppRoutingModule],
2023-02-22 13:12:40 +00:00
providers: [],
bootstrap: [AppComponent],
2023-02-22 13:12:40 +00:00
})
export class AppModule {}