Initial commit
This commit is contained in:
41
src/app/app.module.ts
Normal file
41
src/app/app.module.ts
Normal file
@@ -0,0 +1,41 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { AppComponent } from './components/app/app.component';
|
||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||
import { MatInputModule } from '@angular/material/input';
|
||||
import { MatIconModule } from '@angular/material/icon';
|
||||
import { MatGridListModule } from '@angular/material/grid-list';
|
||||
import { ClipboardModule } from '@angular/cdk/clipboard';
|
||||
import { MatSnackBarModule} from '@angular/material/snack-bar';
|
||||
import { TranslatePipe } from './translate-pipe';
|
||||
import { PeselComponent } from './components/pesel/pesel.component';
|
||||
import { NipComponent } from './components/nip/nip.component';
|
||||
import { RegonComponent } from './components/regon/regon.component';
|
||||
import { IbanComponent } from './components/iban/iban.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent,
|
||||
TranslatePipe,
|
||||
PeselComponent,
|
||||
NipComponent,
|
||||
RegonComponent,
|
||||
IbanComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
FormsModule,
|
||||
BrowserAnimationsModule,
|
||||
MatInputModule,
|
||||
MatIconModule,
|
||||
MatGridListModule,
|
||||
ClipboardModule,
|
||||
MatSnackBarModule,
|
||||
ReactiveFormsModule,
|
||||
],
|
||||
providers: [TranslatePipe],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule {
|
||||
}
|
||||
Reference in New Issue
Block a user