File tree 3 files changed +2
-6
lines changed
3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { Component } from '@angular/core';
3
3
@Component ( {
4
4
selector : 'app-root' ,
5
5
templateUrl : './app.component.html' ,
6
- styleUrls : [ './app.component.css' ]
6
+ styleUrls : [ './app.component.css' ] ,
7
7
} )
8
8
export class AppComponent {
9
9
title = 'app works!' ;
Original file line number Diff line number Diff line change @@ -7,17 +7,13 @@ import { APP_ROUTES } from './app.routes';
7
7
8
8
import { AuthModule } from './auth/auth.module' ;
9
9
import { AppComponent } from './app.component' ;
10
- import { LoginComponent } from './auth/login/login.component' ;
11
- import { RegisterComponent } from './auth/register/register.component' ;
12
10
import { AuthService } from './auth/auth.service' ;
13
11
import { HttpOptionsService , UserService } from './common-services' ;
14
12
15
13
16
14
@NgModule ( {
17
15
declarations : [
18
16
AppComponent ,
19
- LoginComponent ,
20
- RegisterComponent ,
21
17
] ,
22
18
imports : [
23
19
BrowserModule ,
Original file line number Diff line number Diff line change 1
1
import { Injectable } from '@angular/core' ;
2
- import { Http , Response } from '@angular/http' ;
2
+ import { Http , Response } from '@angular/http' ;
3
3
import { Observable } from 'rxjs/Observable' ;
4
4
import { Subject } from 'rxjs/Subject' ;
5
5
You can’t perform that action at this time.
0 commit comments