An error occurred while loading the file. Please try again.
-
Arun Kumar authored57ec1af2
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { ManageExamsModuleModule } from './modules/manage-exams-module/manage-exams-module.module';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
ManageExamsModuleModule,
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }