Added pages
This commit is contained in:
@ -1,25 +1,32 @@
|
||||
import {BrowserModule} from '@angular/platform-browser';
|
||||
import {NgModule} from '@angular/core';
|
||||
|
||||
import {AppRoutingModule} from './app-routing.module';
|
||||
import {AppRouting} from './app.routing';
|
||||
import {AppComponent} from './app.component';
|
||||
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
||||
import {ServiceWorkerModule} from '@angular/service-worker';
|
||||
import {environment} from '../environments/environment';
|
||||
import {FormsModule} from "@angular/forms";
|
||||
import {MatSnackBarModule} from "@angular/material";
|
||||
import {MatSnackBarModule, MatToolbarModule} from "@angular/material";
|
||||
import {MapComponent} from "./map/map.component";
|
||||
import {NotFoundComponent} from "./404/404.component";
|
||||
import {HomeComponent} from "./home/home.component";
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent
|
||||
AppComponent,
|
||||
HomeComponent,
|
||||
MapComponent,
|
||||
NotFoundComponent,
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
AppRoutingModule,
|
||||
AppRouting,
|
||||
BrowserAnimationsModule,
|
||||
FormsModule,
|
||||
MatSnackBarModule,
|
||||
ServiceWorkerModule.register('ngsw-worker.js', {enabled: environment.production})
|
||||
ServiceWorkerModule.register('ngsw-worker.js', {enabled: environment.production}),
|
||||
MatToolbarModule
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
|
Reference in New Issue
Block a user