feat(dashboard): add temperature dragger component

This commit is contained in:
KostyaDanovsky 2017-06-22 12:07:42 +03:00
parent 35e377093a
commit 53778c2053
9 changed files with 362 additions and 3 deletions

View file

@ -3,6 +3,7 @@
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { APP_BASE_HREF } from '@angular/common';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';
@ -11,7 +12,6 @@ import { HttpModule } from '@angular/http';
import { CoreModule } from './@core/core.module';
import { AppComponent } from './app.component';
import { PagesModule } from './pages/pages.module';
import { AppRoutingModule } from './app-routing.module';
@NgModule({
@ -24,6 +24,9 @@ import { AppRoutingModule } from './app-routing.module';
CoreModule,
],
bootstrap: [AppComponent],
providers: [
{ provide: APP_BASE_HREF, useValue: '/' },
],
})
export class AppModule {
}