Skip to content

Instantly share code, notes, and snippets.

@ZenulAbidin
Last active November 29, 2023 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZenulAbidin/122aeef02d6d143509b06c567d692a0f to your computer and use it in GitHub Desktop.
Save ZenulAbidin/122aeef02d6d143509b06c567d692a0f to your computer and use it in GitHub Desktop.
Angular module for phone number component
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms'
import { IonicModule } from '@ionic/angular';
import { PhoneNumberComponent } from './phone-number.component';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
],
declarations: [PhoneNumberComponent]
})
export class ExampleModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment