import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { HomeComponent } from './home.component'; import { HomeRoutingModule } from './home.routes'; import { ContatoService } from './contato.service'; @NgModule({ declarations: [ HomeComponent ], exports: [ HomeComponent ], imports: [ HomeRoutingModule, CommonModule ], providers: [ ContatoService ] }) export class HomeModule { }