import * as $ from 'jquery'; import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; import { HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; /*import { FullComponent } from './master-layout/layouts/full/full.component'; import { NavigationComponent } from './master-layout/shared/header-navigation/navigation.component'; import { SidebarComponent } from './master-layout/shared/sidebar/sidebar.component'; import { Dashboard1Component } from './master-layout/dashboards/dashboard1/dashboard1.component'; import { SIDEBAR_TOGGLE_DIRECTIVES } from './master-layout/shared/sidebar.directive'; import { FooterComponent } from './master-layout/shared/footer/footer.component'; import { HeaderContactComponent } from './master-layout/shared/header-contact/header-contact.component'; import { BrandComponent } from './master-layout/shared/header-brand/brand.component'; */ import { MasterLayoutModule } from './master-layout/master-layout.module'; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule.withServerTransition({ appId: 'ng-cli-universal' }), HttpClientModule, ReactiveFormsModule, FormsModule, MasterLayoutModule /* RouterModule.forRoot([ { path: '', component: FullComponent, children: [ { path: '', redirectTo: 'dashboard', pathMatch: 'full' }, { path: 'dashboard', component: Dashboard1Component} ] } ]) */ ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }