import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { TextareaComponent } from './textarea.component'; import { MaterialModule } from '../../material/material.module'; @NgModule({ declarations: [TextareaComponent], imports: [ CommonModule, MaterialModule ], exports: [ TextareaComponent // <-- this! ] }) export class TextareaModule { }