Project: Mall App Client: Maiora
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.

orders.component.ts 398 B

1234567891011121314151617
  1. import { Component, OnInit } from '@angular/core';
  2. import { UserDataService } from '../services/user-data.service';
  3. @Component({
  4. selector: 'app-orders',
  5. templateUrl: './orders.component.html',
  6. styleUrls: ['./orders.component.scss'],
  7. })
  8. export class OrdersComponent implements OnInit {
  9. constructor(
  10. private userDataService: UserDataService
  11. ) { }
  12. ngOnInit() { }
  13. }