\\r\\n\"","import { Component, ViewEncapsulation } from '@angular/core';\r\nimport { Router } from '@angular/router';\r\n\r\n@Component({\r\n selector: 'az-error',\r\n encapsulation: ViewEncapsulation.None,\r\n templateUrl: './error.component.html'\r\n})\r\nexport class ErrorComponent {\r\n router: Router;\r\n \r\n constructor(router: Router) {\r\n this.router = router;\r\n }\r\n\r\n searchResult(): void {\r\n this.router.navigate(['pages/search']);\r\n }\r\n}","// The file contents for the current environment will overwrite these during build.\r\n// The build system defaults to the dev environment which uses `environment.ts`, but if you do\r\n// `ng build --env=prod` then `environment.prod.ts` will be used instead.\r\n// The list of which env maps to which file can be found in `.angular-cli.json`.\r\n\r\nexport const environment = {\r\n production: false,\r\n apiBase: \"\"\r\n};\r\n","import { enableProdMode } from '@angular/core';\r\nimport { platformBrowserDynamic } from '@angular/platform-browser-dynamic';\r\nimport { AppModule } from './app/app.module';\r\nimport { environment } from './environments/environment';\r\n\r\nif (environment.production) {\r\n enableProdMode();\r\n}\r\n\r\nplatformBrowserDynamic().bootstrapModule(AppModule);\r\n\r\n"],"sourceRoot":""}