| 123456789101112131415 |
- import { Component, OnInit } from '@angular/core';
- @Component({
- selector: 'app-management',
- templateUrl: './management.component.html',
- styleUrls: ['./management.component.scss']
- })
- export class ManagementComponent implements OnInit {
- constructor() { }
- ngOnInit() {
- }
- }
|