removed old code for portal
[eliot.git] / blueprints / common / eliot-ui / frontend-src / src / app / home / home.component.ts
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 (file)
index 299fcc4..0000000
+++ /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();
-  }
-
-}