|
1234567891011121314151617 |
- import { Component, OnInit } from '@angular/core';
- import { UserDataService } from '../services/user-data.service';
-
- @Component({
- selector: 'app-orders',
- templateUrl: './orders.component.html',
- styleUrls: ['./orders.component.scss'],
- })
- export class OrdersComponent implements OnInit {
-
- constructor(
- private userDataService: UserDataService
- ) { }
-
- ngOnInit() { }
-
- }
|