Skip to content
Snippets Groups Projects
key-input.module.ts 732 B
Newer Older
  • Learn to ignore specific revisions
  • import { NgModule } from '@angular/core';
    import { CommonModule } from '@angular/common';
    import { KeypadComponent } from './components/keypad/keypad.component';
    import { KeypadKeyComponent } from './components/keypad-key/keypad-key.component';
    import { KeypadFrenchComponent } from './components/keypad-french/keypad-french.component';
    import { KeypadMathComponent } from './components/keypad-math/keypad-math.component';
    
    import { SharedModule } from 'common/shared.module';
    
    
    @NgModule({
      declarations: [
        KeypadComponent,
        KeypadKeyComponent,
        KeypadFrenchComponent,
        KeypadMathComponent
      ],
      imports: [
        CommonModule,
        SharedModule
      ],
      exports: [
        KeypadComponent
      ]
    })
    export class KeyInputModule {}