Last active
June 17, 2022 11:08
-
-
Save NyaGarcia/b0b5b6db81d3fc3e834e10b87c7d69e9 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 { CommonModule } from '@angular/common'; | |
import { FormComponent } from './components/form/form.component'; | |
import { MatButtonModule } from '@angular/material/button'; | |
import { MatCardModule } from '@angular/material/card'; | |
import { MatDialogModule } from '@angular/material/dialog'; | |
import { MatFormFieldModule } from '@angular/material/form-field'; | |
import { MatInputModule } from '@angular/material/input'; | |
import { NgModule } from '@angular/core'; | |
import { PokemonComponent } from './pokemon.component'; | |
import { PokemonRoutingModule } from './pokemon-routing.module'; | |
import { ReactiveFormsModule } from '@angular/forms'; | |
import { ListComponent } from './components/list/list.component'; | |
@NgModule({ | |
declarations: [PokemonComponent, FormComponent, ListComponent], | |
providers: [], | |
imports: [ | |
CommonModule, | |
PokemonRoutingModule, | |
ReactiveFormsModule, | |
MatFormFieldModule, | |
MatInputModule, | |
MatCardModule, | |
MatButtonModule, | |
MatDialogModule, | |
], | |
}) | |
export class PokemonModule {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment