X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=blueprints%2Fcommon%2Feliot-ui%2Ffrontend-src%2Fsrc%2Fapp%2Fhome%2Fhome.component.ts;fp=blueprints%2Fcommon%2Feliot-ui%2Ffrontend-src%2Fsrc%2Fapp%2Fhome%2Fhome.component.ts;h=0000000000000000000000000000000000000000;hb=434326c60fb0434bda587102b4746173fe425dea;hp=299fcc4bfebae755e3aa3d77e009b989c15cb1ad;hpb=37827e492060182b32df67c2a538a29808fa5e17;p=eliot.git diff --git a/blueprints/common/eliot-ui/frontend-src/src/app/home/home.component.ts b/blueprints/common/eliot-ui/frontend-src/src/app/home/home.component.ts deleted file mode 100644 index 299fcc4..0000000 --- a/blueprints/common/eliot-ui/frontend-src/src/app/home/home.component.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { ToolbarService } from './../toolbar/toolbar.service'; - -@Component({ - selector: 'app-home', - templateUrl: './home.component.html', - styleUrls: ['./home.component.scss'] -}) -export class HomeComponent implements OnInit { - // images = [944, 1011, 984].map((n) => `https://picsum.photos/id/${n}/900/500`); - images = ["./../../assets/images/iotlatest1.png","./../../assets/images/login2.jpg","./../../assets/images/iotlatest6.jpg"]; - public currentUser; - - constructor(public toolbarService: ToolbarService) { - this.currentUser = localStorage.getItem('currentUser')? JSON.parse(localStorage.getItem('currentUser')) : ''; - } - - ngOnInit() { - // this.toolbarService.show(); - this.toolbarService.show(); - } - -}