Broker System for Supercredit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 satır
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. }