import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { RatifyComponent } from './ratify.component'; import {AngularFontAwesomeModule} from 'angular-font-awesome'; @NgModule({ imports: [ CommonModule, AngularFontAwesomeModule ], declarations: [RatifyComponent], exports: [RatifyComponent] }) export class RatifyModule { }