|
- import { NgModule } from '@angular/core';
- import { BrowserModule } from '@angular/platform-browser';
-
- import { AppRoutingModule } from './app-routing.module';
- import { AppComponent } from './app.component';
- import { LoginComponent } from './pages/login/login.component';
- import { TabsComponent } from './layout/tabs/tabs.component';
- import { RegisterBusinessComponent } from './pages/register-business/register-business.component';
- import { FormsModule } from '@angular/forms';
- import { MockComponent } from './widgets/mock/mock.component';
- import { EServicesComponent } from './pages/e-services/e-services.component';
- import { NotificationsComponent } from './layout/notifications/notifications.component';
- import { SelectEntitiesComponent } from './widgets/select-entities/select-entities.component';
- import { CheckStatusComponent } from './widgets/check-status/check-status.component';
- import { TableComponent } from './widgets/table/table.component';
- import { KeyValueHolderComponent } from './widgets/key-value-holder/key-value-holder.component';
- import { FileComponent } from './widgets/file/file.component';
-
- @NgModule({
- declarations: [
- AppComponent,
- LoginComponent,
- TabsComponent,
- RegisterBusinessComponent,
- MockComponent,
- EServicesComponent,
- NotificationsComponent,
- SelectEntitiesComponent,
- CheckStatusComponent,
- TableComponent,
- KeyValueHolderComponent,
- FileComponent
- ],
- imports: [
- BrowserModule,
- AppRoutingModule,
- FormsModule
- ],
- providers: [],
- bootstrap: [AppComponent]
- })
- export class AppModule { }
|