Skip to content

Instantly share code, notes, and snippets.

@vadimkorr
Last active March 25, 2018 12:48
Show Gist options
  • Select an option

  • Save vadimkorr/73850406fb6b28d042d876dae063a26a to your computer and use it in GitHub Desktop.

Select an option

Save vadimkorr/73850406fb6b28d042d876dae063a26a to your computer and use it in GitHub Desktop.
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