Last active
March 25, 2018 12:48
-
-
Save vadimkorr/73850406fb6b28d042d876dae063a26a 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 { NgModule } from '@angular/core'; | |
| import { CommonModule } from '@angular/common'; | |
| import { FormsModule } from '@angular/forms'; | |
| import { InputComponent } from './components/input/input.component'; | |
| import { LabeledComponent } from './components/labeled/labeled.component'; | |
| import { LabeledInputComponent } from './components/labeled-input/labeled-input.component'; | |
| @NgModule({ | |
| imports: [ CommonModule, FormsModule ], | |
| declarations: [ InputComponent, LabeledComponent, LabeledInputComponent ], | |
| exports: [ InputComponent, LabeledInputComponent ] | |
| }) | |
| export class CustomControlsModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment