https://github.com/angular/angular
Raw File
Tip revision: bd58e129cf666abe5044638d93378d9681488667 authored by Alex Rickabaugh on 12 June 2017, 22:36:19 UTC
docs: add changelog for 4.2.2
Tip revision: bd58e12
shared.module.ts
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { SelectComponent } from './select/select.component';

@NgModule({
  imports: [
    CommonModule
  ],
  exports: [
    SelectComponent
  ],
  declarations: [
    SelectComponent
  ]
})
export class SharedModule {}
back to top