Broker System for Supercredit
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

26 lines
482B

  1. import { Component, OnInit } from '@angular/core';
  2. import { sampleProducts } from '../models/sample_product';
  3. import {AuthService} from '../service/auth.service';
  4. import {Observable} from 'rxjs';
  5. @Component({
  6. selector: 'app-dashboard',
  7. templateUrl: './dashboard.component.html',
  8. styleUrls: ['./dashboard.component.scss']
  9. })
  10. export class DashboardComponent implements OnInit {
  11. public gridData: any[] = sampleProducts;
  12. constructor() { }
  13. ngOnInit(): void {
  14. }
  15. }