import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import {RatifyModule} from 'ratify'; import {AngularFontAwesomeModule} from 'angular-font-awesome'; @NgModule({ declarations: [ AppComponent ], imports: [ AngularFontAwesomeModule, BrowserModule, RatifyModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }