|
- import { Component, OnInit } from '@angular/core';
- import { sampleProducts } from '../models/sample_product';
- import {AuthService} from '../service/auth.service';
- import {Observable} from 'rxjs';
-
-
-
- @Component({
- selector: 'app-dashboard',
- templateUrl: './dashboard.component.html',
- styleUrls: ['./dashboard.component.scss']
- })
- export class DashboardComponent implements OnInit {
-
- public gridData: any[] = sampleProducts;
-
- constructor() { }
-
- ngOnInit(): void {
-
- }
-
-
-
- }
|